upstream: 0:71e73a60f282 [Genesis commit: dvdisaster 0.79.7]

This commit is contained in:
Stéphane Lesimple
2021-10-03 16:23:37 +02:00
parent 8d080d69c5
commit eac7884373
97 changed files with 502 additions and 459 deletions

View File

@@ -1,5 +1,8 @@
# dvdisaster changelog -*-text-*-
0.79.7 - work in progress -
- Cleanup of documentation and files for new contact address
0.79.6.patchlevel-9 27-06-2021 *UNOFFICIAL*
- fix: using --strip in console without X server would segfault at program exit
- enh: windows: hide useless background console

View File

@@ -1,3 +1,23 @@
# dvdisaster: Additional error correction for optical media.
# Copyright (C) 2004-2018 Carsten Gnoerlich.
#
# Email: support@dvdisaster.org
#
# This file is part of dvdisaster.
#
# dvdisaster is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# dvdisaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
######################################################################
# Begin of dvdisaster makefile template
######################################################################
@@ -135,21 +155,6 @@ src/inlined-icons.h: icons/read.png icons/create.png icons/scan.png icons/fix.pn
@while gdk-pixbuf-csource --raw --name=dvdisaster_nothing icons/nothing.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
@rm -f src/.icons.tmp
$(BUILDTMP)/help-dialogs.o: src/help-dialogs.c simple-md5sum
@if test -e fingerprints.md5; \
then if test -e src/help-dialogs.h; then rm src/help-dialogs.h; fi; \
./simple-md5sum -b src/*.h src/*.c | grep -vF -e inlined-icons.h -e build.h | sort -k2 >tmp.md5; \
sort -k2 < fingerprints.md5 >tmp2.md5; \
if ! cmp tmp2.md5 tmp.md5 >/dev/null; \
then echo "#define MODIFIED_SOURCE 1" >> src/help-dialogs.h; \
else echo "#define UNMODIFIED_SOURCE 1" >> src/help-dialogs.h; \
fi; \
rm tmp.md5 tmp2.md5; \
else echo "#define MODIFIED_SOURCE 1" >> src/help-dialogs.h; \
fi
@echo "Compiling:" src/help-dialogs.c
@$(CC) $(COPTS) -c src/help-dialogs.c -o $(BUILDTMP)/help-dialogs.o
$(BUILDTMP)/rs-encoder-sse2.o: src/rs-encoder-sse2.c
@echo "Compiling:" src/rs-encoder-sse2.c
@$(CC) $(SSE2_OPTIONS) $(COPTS) -c src/rs-encoder-sse2.c -o $(BUILDTMP)/rs-encoder-sse2.o
@@ -164,9 +169,6 @@ locale:
untranslated:
@$(MAKE) --no-print-directory -C locale check-untranslated
simple-md5sum: src/md5.c
@$(CC) $(COPTS) $(MUDFLAP_CFLAGS) -DSIMPLE_MD5SUM src/md5.c $(LDFLAGS) $(MUDFLAP_LFLAGS) $(MUDFLAP_LIBS) -o simple-md5sum
version.tex:
@test -d $(SRCDIR)/documentation/config || mkdir $(SRCDIR)/documentation/config
@echo "\\newcommand{\\projectversion}{$(VERSION)}" >$(SRCDIR)/documentation/config/version.tex
@@ -331,10 +333,6 @@ distclean: clean
@rm -f configure.log Makefile.config src/build.h GNUmakefile locale/Makefile
@for i in locale/?? locale/??_??; do rm -rf $$i; done
# There might be a not executable simple-md5sum from a compiler run
# under a different architecture, so make sure we have a working binary
# in the clean target.
clean:
@echo "Removing rebuildable files"
@rm -rf *.o $(BUILDTMP)/*.o medium.* abbild.* dvdisaster .dvdisaster core core.* *.core
@@ -344,17 +342,6 @@ clean:
@find . -name \#\*\# -print | xargs rm -f;
@rm -f documentation/config/version.tex
@if test -e $(PKGNAME); then rm -rf $(PKGNAME); fi
@if test -e ~/.dvdisaster-original-author; then \
mv build.h build.saved ;\
if ! test -x simple-md5sum || ! ./simple-md5sum >/dev/null 2>&1; then \
rm -f simple-md5sum; \
$(MAKE) --no-print-directory simple-md5sum; \
echo "[simple-md5sum (re-)built]"; \
fi; \
./simple-md5sum -b src/*.h src/*.c >fingerprints.md5 ;\
mv build.saved build.h; \
fi
@rm -f simple-md5sum
@$(MAKE) --no-print-directory -C $(SRCDIR)/documentation/codec-specs clean;
@$(MAKE) --no-print-directory -C $(SRCDIR)/documentation/user-manual clean;
@$(MAKE) --no-print-directory -C $(SRCDIR)/locale clean;
@@ -367,7 +354,7 @@ INSTALL: documentation/install.template
@sed "s/@@PKGNAME/$(PKGNAME)/" <documentation/install.template >INSTALL
srcdist: INSTALL distclean manual manualclean codecsclean
@cd .. ; tar -c -j -X $(PKGNAME)/NODIST -f $(TAR_PREFIX)/$(PKGNAME).tar.bz2 $(PKGNAME)
@cd .. ; tar -c -j --owner=dvdisaster --group=devel -X $(PKGNAME)/NODIST -f $(TAR_PREFIX)/$(PKGNAME).tar.bz2 $(PKGNAME)
@cd .. ; gpg --homedir .gnupg --default-key 758BCC23 --detach-sign --output $(TAR_PREFIX)/$(PKGNAME).tar.bz2.gpg --armor $(TAR_PREFIX)/$(PKGNAME).tar.bz2
static: dvdisaster

20
INSTALL
View File

@@ -1,3 +1,23 @@
# dvdisaster: Additional error correction for optical media.
# Copyright (C) 2004-2018 Carsten Gnoerlich.
#
# Email: support@dvdisaster.org
#
# This file is part of dvdisaster.
#
# dvdisaster is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# dvdisaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
Installation of the dvdisaster source code distribution
=======================================================
[don't edit - generated from documentation/install.template]

26
README
View File

@@ -1,3 +1,23 @@
# dvdisaster: Additional error correction for optical media.
# Copyright (C) 2004-2018 Carsten Gnoerlich.
#
# Email: support@dvdisaster.org
#
# This file is part of dvdisaster.
#
# dvdisaster is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# dvdisaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
This directory tree contains dvdisaster,
a tool providing additional ECC protection for optical media.
@@ -11,12 +31,6 @@ Roadmap of contained files
INSTALL
See the file INSTALL on bringing up dvdisaster.
README.CVS
If you got this archive from CVS, make sure to read README.CVS also.
README.MODIFYING
Please read these notes carefully if you plan to modify dvdisaster.
COPYING
This software is distributed under the GNU General Public License,
which is contained in the file COPYING.

View File

@@ -1,37 +0,0 @@
Please read these notes carefully if you plan to modify dvdisaster.
-------------------------------------------------------------------
When publishing a modified version of dvdisaster you are kindly
asked not to misrepresent your work as the original.
The original authors have undertaken great efforts for putting the
project into shape and earning their reputation. So if you hack and
publish your own version of dvdisaster, please RESPECT the original
authors vision of what the project should be like.
Document your changes as explained below so that users can tell
the modified version from the original.
How to document your changes.
-----------------------------
Document the changes you made in the source code, NOT in a
separate file which might get unbundled from the changed source.
New files start with your copyright notice; modified files
get an additional entry under the original copyright notice.
See the file md5.c for an example.
But this is not enough; most people will not read the source
code as they are using binary distributions. Give them a way
to find out about your modifications in the "About" dialog.
The build process will prepare a suitable message template
for you if it finds that you have modified the sources.
Feel free to further customize this message, and even
change the project name if you deem that appropriate.
Thank you for your cooperation.

View File

@@ -1,3 +1,22 @@
# dvdisaster: Additional error correction for optical media.
# Copyright (C) 2004-2018 Carsten Gnoerlich.
#
# Email: support@dvdisaster.org
#
# This file is part of dvdisaster.
#
# dvdisaster is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# dvdisaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
This document describes the process of adding a new translation
to dvdisaster. It is work in progress and not yet complete.

25
configure vendored
View File

@@ -1,5 +1,25 @@
#!/usr/bin/env bash
# dvdisaster: Additional error correction for optical media.
# Copyright (C) 2004-2018 Carsten Gnoerlich.
#
# Email: support@dvdisaster.org
#
# This file is part of dvdisaster.
#
# dvdisaster is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# dvdisaster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with dvdisaster. If not, see <http://www.gnu.org/licenses/>.
# Load the shell functions needed for the rest of this script.
BASH_BASED_CONFIGURE=./scripts/bash-based-configure
@@ -8,8 +28,6 @@ REQUIRED_CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURC
RECOMMENDED_CFLAGS="-O2 -fomit-frame-pointer -Wall -Wno-unknown-warning-option -Wno-deprecated-declarations -Wno-stringop-truncation -Wno-format-zero-length"
DEBUG_CFLAGS="-ggdb -Wall"
CFG_USE_CYGWIN="no" # do not change
if test -e $BASH_BASED_CONFIGURE; then
source $BASH_BASED_CONFIGURE $BASH_BASED_CONFIGURE_OPTS
else
@@ -20,9 +38,10 @@ fi
# Set the package name and version
PACKAGE dvdisaster 0.79.6
PACKAGE dvdisaster 0.79.7
DEFINE_INT PATCHLEVEL 9
DEFINE_STRING HAVE_UNSTABLE_RELEASE 1
DEFINE_STRING HOMEPAGE "https://dvdisaster.jcea.es"
# Check for some essential tools.

View File

@@ -1,4 +1,4 @@
.TH DVDISASTER 1 "2010-02-07" "0.80" "Schutz f\[:u]r optische Datentr\[:a]ger"
.TH DVDISASTER 1 "2018-05-14" "0.79.7" "Schutz f\[:u]r optische Datentr\[:a]ger"
.SH NAME
DVDISASTER \- Schutz f\[:u]r optische Datentr\[:a]ger gegen Datenverlust durch Alterung
@@ -67,6 +67,7 @@ oder Kratzer
.IR n \|]
.RB [\| \-\-spinup\-delay
.IR n \|]
.RB [\| \-\-version \|]
.SH BESCHREIBUNG
.B DVDISASTER
@@ -334,7 +335,7 @@ funktioniert am besten beim direkten Arbeiten mit Dateien im Arbeitsspeicher (z.
.RE
.TP
.B \-\-fill-unreadable n
f\[:u]lle unlesbare Sektoren mit Byte n.
f\[:u]lle unlesbare Sektoren mit Byte n. Hilfreich um Abbilder zu verarbeiten, die von anderen Werkzeugen angelegt wurden. Beispielsweise f\[:u]llt ddrescue unlesbare Sektoren mit Null auf; dementsprechend w\[:a]re \-\-fill-unreadable=0 zu verwenden. Bitte dabei beachten: Sparse files k\[:o]nnen nicht mit dvdisaster verarbeitet werden.
.TP
.B \-\-ignore-fatal-sense
Lesen nach m\[:o]glicherweise schwerwiegenden Fehlern fortsetzen.
@@ -422,6 +423,9 @@ warnt bei Geschwindigkeits\[:a]nderung um mehr als n Prozent.
.TP
.B \-\-spinup-delay n
gibt dem Laufwerk n Sekunden Zeit zum Hochlaufen.
.TP
.B \-\-version
gibt die Versionsnummer und einige Konfigurationseigenschaften aus
.PP
.SH SIEHE AUCH

View File

@@ -1,4 +1,4 @@
.TH DVDISASTER 1 "2020-08-30" "0.80" "protection for optical media"
.TH DVDISASTER 1 "2018-05-14" "0.79.7" "protection for optical media"
.SH NAME
DVDISASTER \- data loss/scratch/aging protection for optical media
@@ -67,6 +67,7 @@ DVDISASTER \- data loss/scratch/aging protection for optical media
.IR n \|]
.RB [\| \-\-spinup\-delay
.IR n \|]
.RB [\| \-\-version \|]
.SH DESCRIPTION
.B DVDISASTER
@@ -348,7 +349,7 @@ and on very fast media with low latency such as SSDs.
.RE
.TP
.B \-\-fill-unreadable n
fill unreadable sectors with byte n
fill unreadable sectors with byte n. Useful for processing images which have been created by other tools. For example, ddrescue fills unreadable sectors with zeros; therefore \-\-fill-unreadable=0 should be used. Please note: Sparse files can not be processed with dvdisaster.
.TP
.B \-\-ignore-fatal-sense
continue reading after potentially fatal error condition.
@@ -432,6 +433,9 @@ print warning if speed changes by more than n percent.
.TP
.B \-\-spinup-delay n
wait n seconds for drive to spin up.
.TP
.B \-\-version
print version number and some configuration information.
.PP
.SH SEE ALSO

View File

@@ -100,7 +100,7 @@ containing a formal specification of the error correction data format.
\vfill
\begin{center}
{\em
Copyright 2008-2017 Carsten Gnörlich.
Copyright 2008-2018 Carsten Gnörlich.
Verbatim copying and distribution of this entire article is permitted in any medium,
provided this notice is preserved.}
\end{center}

View File

@@ -1,83 +0,0 @@
b064d001e5e4ed8221eb9f10d784cf45 *src/dvdisaster.h
79abb986b900ec06a73256876ba0d65c *src/galois-inlines.h
14eb94f981903fcffe2ccb33aa2cb9db *src/md5.h
f2d723717ca5f450ee8cc0b556f5506a *src/read-linear.h
100127beaecc24b28b2b80d76bbf68c8 *src/rs01-includes.h
5b39a23de01c988d562d70ed68682ab7 *src/rs02-includes.h
4407ce43eae55b19409be9980432c94f *src/rs03-includes.h
2a5980c706c67bec479e4532ab9a7093 *src/scsi-layer.h
c779a2908542c6a519ed7cdfc4e5e073 *src/udf.h
8f86a75f83a3bc9b6ce54cce037b3c75 *src/bitmap.c
5230bd572fc8ef1857063c885c00463a *src/build.c
7b59033ebffd6d8230efaf6834b2f942 *src/cacheprobe.c
bfb6d7ed2a921ce18dc0339774f72f41 *src/closure.c
e5bd212395758ae0b7e97d70c7a2df55 *src/crc32.c
7f5951182421a0366782b191a0b4ba82 *src/crcbuf.c
abb7c9decfd43935c943bc0dd1bab0d5 *src/curve.c
f96a3e006fc5d1c5d181e5056377c9ce *src/debug.c
6f8843d1cccc55506771ab02168b2df3 *src/ds-marker.c
19d0f85d035115f3bd8d4472e6379058 *src/dvdisaster.c
1c8136affed485adaf60e7904d9930a4 *src/ecc-rs01.c
7b301352a60c18c25f84c8cc7a36fd48 *src/ecc-rs02.c
91aa71f03dc9dade2e97dc59d7ec38f0 *src/ecc-rs03.c
39900d26ddcbb7c7e2a9198de14bace1 *src/endian.c
3f6e9dffb9de733dcccc916ca38292ca *src/galois.c
abc8a8d55248eab5416c45104a033171 *src/help-dialogs.c
547bf9a9d005419a0ed601317aeb4e14 *src/heuristic-lec.c
746666ade12c2db41ce9af6f55e4c13c *src/icon-factory.c
b3db603f77fd2735a6e8b1c568f7bdac *src/image.c
fe9de426f96e6d206d1482a24f589253 *src/large-io.c
abed1a50b9751387dc1e3cbc84a61fba *src/l-ec.c
6960647dc7fc5ce8a2727326946aaff1 *src/logfile.c
92e81646ef4e8618ded5d82db6a6163a *src/maintenance.c
3c3eebc43fc7aff3865022207e06153b *src/main-window.c
913554f7e994e212f6a52b769eef24bb *src/md5.c
8f0acf2f7d98a55d05a4721d97741c7c *src/medium-info.c
ce145372a25e0fb96070d460da7bdbb4 *src/memtrack.c
66cdf82b59fd973e3060d163b6887a20 *src/menubar.c
5006b2db93b210be3fb630e8d9463239 *src/method.c
17183bad35db217e2c352178844ceda3 *src/method-link.c
2af6685017c247de7458e9c4d39b6ed5 *src/misc.c
6523662e8e5aa2daf38a7e8c07ce1180 *src/preferences.c
5e7b077020e063951cc72ea57f5f046a *src/print-sense.c
cdde449dd2a8f64b560ff18a36f86234 *src/random.c
28f42d264cd18bb2e0ccdd8e15a0172e *src/raw-editor.c
1d416f611a175ba15be27f7f5686dd98 *src/raw-sector-cache.c
7f281312b3a65666f7eebaadb62e7f6e *src/read-adaptive.c
ccdc572bb24d20ae6fb53f360318b492 *src/read-adaptive-window.c
af7a757cad586d3766a3eaad382c6737 *src/read-linear.c
47dc58effd96f2b23182a4595ca36171 *src/read-linear-window.c
edc0e564573d595c1196c4dc0e70e659 *src/recover-raw.c
ea4d6894e717d4957cde686f88d7bdfd *src/rs01-common.c
aa9d409ee4eeaa7ba92d731cf32ee727 *src/rs01-create.c
ab15d7470a2fe950ebb33134018f044f *src/rs01-fix.c
cb3722894665baf9c4ff4c26ff79737b *src/rs01-verify.c
5cdecc33da1579733f0545944c4069ab *src/rs01-window.c
b33a0982df485b4e52e56fc1c61285ae *src/rs02-common.c
a1025fcc9455219937bae5bfadf0abf5 *src/rs02-create.c
f466c8296a37ea88b64aec9c870d6d75 *src/rs02-fix.c
369ec37d67674ffd2627f0373a566f0c *src/rs02-recognize.c
8cc283e60a73493ac6ba60a2f4af1754 *src/rs02-verify.c
eccac3ed74b32508b27de0e0d363c6b1 *src/rs02-window.c
9a9b966171f1b375cf3381b545a1c6d4 *src/rs03-common.c
2502514702687a2a252feace096d20f4 *src/rs03-create.c
19676ef95e635206c19dfe12b957e4b2 *src/rs03-fix.c
b012df78d2c546c87f6dd75769515409 *src/rs03-preferences.c
7d6101e6a95aeb45d6cd03ffe8891b96 *src/rs03-recognize.c
b7a6a6c64b4034380c581a5499940db4 *src/rs03-verify.c
1d2b071943c121bf0c47a2e047317262 *src/rs03-window.c
a2e1e28a609af85d9b83f01339b33a62 *src/rs-decoder.c
3882a92849cd23e64c81262be6e52650 *src/rs-encoder-altivec.c
1fc6cad3af2461e7974bf49e8f1bf5e9 *src/rs-encoder.c
f7f3e2708f0c389ed53c0f1083567a55 *src/rs-encoder-sse2.c
2e099a3d88f25f81420b96fe9bd62f44 *src/scsi-freebsd.c
cd58a45387267fe0728f439d7bb2045d *src/scsi-layer.c
b1b6bd57433eedab3a4f35389a182d14 *src/scsi-linux.c
7064327dc15a2d88e5375176d4c64132 *src/scsi-netbsd.c
3c0e100cdd499b1c23ac5e12b1fd6694 *src/scsi-simulated.c
be42d574e6340845d984c21dc902af1a *src/scsi-unknown.c
85aa8093f41c36ce791363e94f488dec *src/show-manual.c
6099911dd508701b0b8b5d09105faf95 *src/smart-lec.c
10f3e2b054fe3c1ac69c738b97f1beaa *src/spiral.c
dec5fbde631058d48866cc1d77446d37 *src/udf.c
6741fc5457e9c2026451403f2d45096c *src/welcome-window.c

View File

@@ -2948,7 +2948,7 @@ msgid ""
"* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n"
"* or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3372,7 +3372,7 @@ msgid ""
"\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n"
"or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -4191,11 +4191,8 @@ msgstr "- vyžaduje : dvdisaster-%d.%d (v pořádku)\n"
msgid ""
"* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* vyžaduje : dvdisaster-%d.%d (ŠPATNĚ)\n"
"* Upozornění : Následující výstup nemusí být správný.\n"
"* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n"
#: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883
#, c-format
@@ -5665,11 +5662,8 @@ msgstr "- vyžaduje : dvdisaster-%s\n"
msgid ""
"* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* vyžaduje : dvdisaster-%s (ŠPATNĚ)\n"
"* Upozornění : Následující výstup nemusí být správný.\n"
"* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n"
#: src/rs03-verify.c:896
msgid "none available"
@@ -7008,6 +7002,63 @@ msgstr "<i>Novinky v této verzi:</i>"
#~ msgid "This software does not support encrypted media.\n"
#~ msgstr "Tento program nepodporuje zašifrované disky.\n"
#~ msgid "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr ""
#~ "Copyright 2004-2018 Carsten Gnörlich\n"
#~ "Česká lokalizace\n"
#~ "\t\t2011 Jindřich Šesták\n"
#~ "\t\t2006 Luboš Staněk"
#~ msgid "windowtitle|Modifying dvdisaster"
#~ msgstr "Úpravy dvdisaster"
#~ msgid ""
#~ "<big>Modifying dvdisaster</big>\n"
#~ "<i>Your changes are not ours.</i>"
#~ msgstr ""
#~ "<big>Úpravy dvdisaster</big>\n"
#~ "<i>Vaše úpravy nejsou naše.</i>"
#~ msgid ""
#~ "Modified version Copyright 2018 (please fill in - [directions])\n"
#~ "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr ""
#~ "Upravená verze Copyright 2018 (doplňte - [directions])\n"
#~ "Copyright 2004-2018 Carsten Gnörlich"
#~ msgid ""
#~ "* requires : dvdisaster-%d.%d (BAD)\n"
#~ "* Warning : The following output might be incorrect.\n"
#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n"
#~ msgstr ""
#~ "* vyžaduje : dvdisaster-%d.%d (ŠPATNĚ)\n"
#~ "* Upozornění : Následující výstup nemusí být správný.\n"
#~ "* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n"
#~ msgid ""
#~ "* requires : dvdisaster-%s (BAD)\n"
#~ "* Warning : The following output might be incorrect.\n"
#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n"
#~ msgstr ""
#~ "* vyžaduje : dvdisaster-%s (ŠPATNĚ)\n"
#~ "* Upozornění : Následující výstup nemusí být správný.\n"
#~ "* : Pro aktualizaci navštivte http://www.dvdisaster.org.\n"
#~ msgid ""
#~ "\n"
#~ "This program is <b>not the original</b>. It is based on the\n"
#~ "source code of dvdisaster, but contains third-party changes.\n"
#~ "\n"
#~ "Please do not bother the original authors of dvdisaster\n"
#~ "([www.dvdisaster.org]) about issues with this version.\n"
#~ msgstr ""
#~ "\n"
#~ "Tento program <b>není originál</b>. Je založen na zdrojovém\n"
#~ "kódu dvdisaster, ale obsahuje úpravy třetí strany.\n"
#~ "\n"
#~ "Prosím neobtěžujte originální autory dvdisaster\n"
#~ "([www.dvdisaster.org]) problémy s touto verzí.\n"
#~ msgid "created by dvdisaster-%d.%d\n"
#~ msgstr "vytvořeno pomocí dvdisaster-%d.%d\n"

View File

@@ -3007,13 +3007,13 @@ msgid ""
"* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n"
"* or upgrade dvdisaster.\n"
"\n"
msgstr ""
"* Warnung: Diese Fehlerkorrektur-Datei benötigt dvdisaster-%d.%d!\n"
"* Die Verwendung dieser Datei kann fehlerhafte Ergebnisse verursachen.\n"
"* Bitte lesen Sie das Abbild ohne diese Fehlerkorrektur-Datei ein\n"
"* oder besorgen Sie sich unter http://www.dvdisaster.org eine neuere Version.\n"
"* oder besorgen Sie sich eine neuere Version von dvdisaster.\n"
"\n"
#: src/read-adaptive.c:152 src/rs01-common.c:80 src/rs01-common.c:238
@@ -3055,10 +3055,6 @@ msgid ""
"* Please visit http://www.dvdisaster.org for an upgrade.\n"
"\n"
msgstr ""
"* Warnung: Diese Abbild-Datei benötigt dvdisaster-%d.%d!\n"
"* Die Verwendung dieses Abbilds kann fehlerhafte Ergebnisse verursachen.\n"
"* Bitte besorgen Sie sich unter http://www.dvdisaster.org eine neuere Version.\n"
"\n"
#: src/read-adaptive.c:703
msgid ""
@@ -3452,14 +3448,14 @@ msgid ""
"\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n"
"or upgrade dvdisaster.\n"
"\n"
msgstr ""
"Diese Fehlerkorrektur-Datei benötigt dvdisaster-%d.%d!\n"
"\n"
"Die Verwendung dieser Datei kann fehlerhafte Ergebnisse verursachen.\n"
"Bitte lesen Sie das Abbild ohne diese Fehlerkorrektur-Datei ein\n"
"oder besorgen Sie sich unter http://www.dvdisaster.org eine neuere Version.\n"
"oder besorgen Sie sich eine neuere Version von dvdisaster.\n"
"\n"
#: src/read-linear.c:887
@@ -4285,12 +4281,11 @@ msgstr "- Benötigt : dvdisaster-%d.%d (gut)\n"
msgid ""
"* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* Benötigt : dvdisaster-%d.%d (SCHLECHT)\n"
"* Warnung : Die folgenden Ausgaben können falsch sein.\n"
"* : Bitte besuchen Sie http://www.dvdisaster.de\n"
"* : um eine neuere Version herunterzuladen.\n"
"* : Bitte verwenden Sie eine neuere Version von dvdisaster.\n"
#: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883
#, c-format
@@ -5797,12 +5792,8 @@ msgstr "- Benötigt : dvdisaster-%s\n"
msgid ""
"* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* Benötigt : dvdisaster-%s (SCHLECHT)\n"
"* Warnung : Die folgenden Ausgaben können falsch sein.\n"
"* : Bitte besuchen Sie http://www.dvdisaster.de\n"
"* : um eine neuere Version herunterzuladen.\n"
#: src/rs03-verify.c:896
msgid "none available"

View File

@@ -2686,7 +2686,7 @@ msgid ""
"* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n"
"* or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3108,7 +3108,7 @@ msgid ""
"\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n"
"or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3919,11 +3919,8 @@ msgstr "- richiede : dvdisaster-%d.%d (buono)\n"
msgid ""
"* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* Richiede : dvdisaster-%d.%d (BAD)\n"
"* Attenzione : L'output seguente potrebbe essere non corretto.\n"
"* : Prego visitare http://www.dvdisaster.org per un upgrade\n"
#: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883
#, c-format
@@ -5246,7 +5243,7 @@ msgstr ""
msgid ""
"* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
#: src/rs03-verify.c:896
@@ -6269,6 +6266,18 @@ msgstr ""
#~ "non trovati.\n"
#~ "Si prega di installare il pacchetto dvdisaster-doc.\n"
#~ msgid "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr "Copyright 2004-2018 Carsten Gnörlich"
#~ msgid ""
#~ "* requires : dvdisaster-%d.%d (BAD)\n"
#~ "* Warning : The following output might be incorrect.\n"
#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n"
#~ msgstr ""
#~ "* Richiede : dvdisaster-%d.%d (BAD)\n"
#~ "* Attenzione : L'output seguente potrebbe essere non corretto.\n"
#~ "* : Prego visitare http://www.dvdisaster.org per un upgrade\n"
#~ msgid "created by dvdisaster-%d.%d\n"
#~ msgstr "Creato da dvdisaster-%d.%d\n"
@@ -6454,13 +6463,6 @@ msgstr ""
#~ msgid "--cache-size must at least be 1MiB; 16MiB or higher is recommended."
#~ msgstr "la --cache-size deve essere minimo 1MiB; sono consigliati 16MiB o più."
#~ msgid ""
#~ "\n"
#~ "e-mail: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org"
#~ msgstr ""
#~ "\n"
#~ "e-mail: carsten@dvdisaster.com o cgnoerlich@fsfe.org"
#~ msgid "illegal data_mode: %d"
#~ msgstr "data_mode illegale: %d"

View File

@@ -2870,7 +2870,7 @@ msgid ""
"* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n"
"* or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3297,7 +3297,7 @@ msgid ""
"\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n"
"or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -4113,11 +4113,8 @@ msgstr "- requer : dvdisaster-%d.%d (bom)\n"
msgid ""
"* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* requer : dvdisaster-%d.%d (RUIM)\n"
"* Cuidado : A saída seguinte pode estar incorreta.\n"
"* : Por favor, visite http://www.dvdisaster.org para uma atualização.\n"
#: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883
#, c-format
@@ -5548,7 +5545,7 @@ msgstr ""
msgid ""
"* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
#: src/rs03-verify.c:896
@@ -6774,6 +6771,50 @@ msgstr "<i>Novidades dessa versão:</i>"
#~ msgid "This software does not support encrypted media.\n"
#~ msgstr "Este software não suporta mídias criptografadas.\n"
#~ msgid "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgid "windowtitle|Modifying dvdisaster"
#~ msgstr "Modificando o dvdisaster"
#~ msgid ""
#~ "<big>Modifying dvdisaster</big>\n"
#~ "<i>Your changes are not ours.</i>"
#~ msgstr ""
#~ "<big>Modificando o dvdisaster</big>\n"
#~ "<i>Suas mudanças não são nossas.</i>"
#~ msgid ""
#~ "Modified version Copyright 2018 (please fill in - [directions])\n"
#~ "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr ""
#~ "Versão modificada Copyright 2018 (por favor, preencha - [instruções])\n"
#~ "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgid ""
#~ "* requires : dvdisaster-%d.%d (BAD)\n"
#~ "* Warning : The following output might be incorrect.\n"
#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n"
#~ msgstr ""
#~ "* requer : dvdisaster-%d.%d (RUIM)\n"
#~ "* Cuidado : A saída seguinte pode estar incorreta.\n"
#~ "* : Por favor, visite http://www.dvdisaster.org para uma atualização.\n"
#~ msgid ""
#~ "\n"
#~ "This program is <b>not the original</b>. It is based on the\n"
#~ "source code of dvdisaster, but contains third-party changes.\n"
#~ "\n"
#~ "Please do not bother the original authors of dvdisaster\n"
#~ "([www.dvdisaster.org]) about issues with this version.\n"
#~ msgstr ""
#~ "\n"
#~ "Esse programa <b>não é o original</b>. Ele é baseado no\n"
#~ "código-fonte do dvdisaster, mas contém mudanças de terceiros.\n"
#~ "\n"
#~ "Por favor, não incomode os autores originais do dvdisaster\n"
#~ "([www.dvdisaster.org]) com problemas dessa versão.\n"
#~ msgid "created by dvdisaster-%d.%d\n"
#~ msgstr "criado pelo dvdisaster-%d.%d\n"

View File

@@ -2874,7 +2874,7 @@ msgid ""
"* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n"
"* or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3301,7 +3301,7 @@ msgid ""
"\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n"
"or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -4120,11 +4120,8 @@ msgstr "- требуется : dvdisaster-%d.%d (хорошо)\n"
msgid ""
"* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* требуется : dvdisaster-%d.%d (ПЛОХО)\n"
"* Внимание : Следующий результат может быть неправильным.\n"
"* : Посетите http://www.dvdisaster.org за обновлением.\n"
#: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883
#, c-format
@@ -5556,7 +5553,7 @@ msgstr ""
msgid ""
"* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
#: src/rs03-verify.c:896
@@ -6789,6 +6786,50 @@ msgstr "<i>Новое в этой версии:</i>"
#~ msgid "This software does not support encrypted media.\n"
#~ msgstr "Эта программа не поддерживает шифрованные носители.\n"
#~ msgid "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgid "windowtitle|Modifying dvdisaster"
#~ msgstr "Изменение dvdisaster'а"
#~ msgid ""
#~ "<big>Modifying dvdisaster</big>\n"
#~ "<i>Your changes are not ours.</i>"
#~ msgstr ""
#~ "<big>Изменение dvdisaster'а</big>\n"
#~ "<i>Ваши изменения не являются нашими.</i>"
#~ msgid ""
#~ "Modified version Copyright 2018 (please fill in - [directions])\n"
#~ "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr ""
#~ "Измененнная версия Copyright 2018 (пожалуйста, заполните - [инструкции])\n"
#~ "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgid ""
#~ "* requires : dvdisaster-%d.%d (BAD)\n"
#~ "* Warning : The following output might be incorrect.\n"
#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n"
#~ msgstr ""
#~ "* требуется : dvdisaster-%d.%d (ПЛОХО)\n"
#~ "* Внимание : Следующий результат может быть неправильным.\n"
#~ "* : Посетите http://www.dvdisaster.org за обновлением.\n"
#~ msgid ""
#~ "\n"
#~ "This program is <b>not the original</b>. It is based on the\n"
#~ "source code of dvdisaster, but contains third-party changes.\n"
#~ "\n"
#~ "Please do not bother the original authors of dvdisaster\n"
#~ "([www.dvdisaster.org]) about issues with this version.\n"
#~ msgstr ""
#~ "\n"
#~ "Эта программа <b>не является оригиналом</b>. В ее основе\n"
#~ "исходный код dvdisaster'а, но в ней есть изменения, сделанные сторонними разработчиками.\n"
#~ "\n"
#~ "Пожалуйста, не беспокойте авторов dvdisaster'а\n"
#~ "([www.dvdisaster.org]) проблемами этой версии.\n"
#~ msgid "created by dvdisaster-%d.%d\n"
#~ msgstr "создано с помощью dvdisaster-%d.%d\n"

View File

@@ -2693,7 +2693,7 @@ msgid ""
"* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n"
"* or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3110,7 +3110,7 @@ msgid ""
"\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n"
"or upgrade dvdisaster.\n"
"\n"
msgstr ""
@@ -3919,11 +3919,8 @@ msgstr "- kräver : dvdisaster-%d.%d (bra)\n"
msgid ""
"* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
"* kräver : dvdisaster-%d.%d (DÅLIGT)\n"
"* Varning : Följande utdata kan vara felaktig.\n"
"* : Besök http://www.dvdisaster.org för en uppgradering.\n"
#: src/rs01-verify.c:701 src/rs02-verify.c:1030 src/rs03-verify.c:883
#, c-format
@@ -5263,7 +5260,7 @@ msgstr ""
msgid ""
"* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"
"* : Please upgrade dvdisaster.\n"
msgstr ""
#: src/rs03-verify.c:896
@@ -6348,6 +6345,21 @@ msgstr ""
#~ "hittades inte.\n"
#~ "Installera dvdisaster-doc-paketet.\n"
#~ msgid "Copyright 2004-2018 Carsten Gnoerlich"
#~ msgstr "Copyright 2004-2018 Carsten Gnörlich"
#~ msgid "windowtitle|Modifying dvdisaster"
#~ msgstr "Ändra dvdisaster"
#~ msgid ""
#~ "* requires : dvdisaster-%d.%d (BAD)\n"
#~ "* Warning : The following output might be incorrect.\n"
#~ "* : Please visit http://www.dvdisaster.org for an upgrade.\n"
#~ msgstr ""
#~ "* kräver : dvdisaster-%d.%d (DÅLIGT)\n"
#~ "* Varning : Följande utdata kan vara felaktig.\n"
#~ "* : Besök http://www.dvdisaster.org för en uppgradering.\n"
#~ msgid "created by dvdisaster-%d.%d\n"
#~ msgstr "skapad av dvdisaster-%d.%d\n"
@@ -6552,13 +6564,6 @@ msgstr ""
#~ msgid "--cache-size must at least be 1MiB; 16MiB or higher is recommended."
#~ msgstr "--cache-size måste vara åtminstone 1MiB; 16MiB eller högre rekommenderas."
#~ msgid ""
#~ "\n"
#~ "e-mail: carsten@dvdisaster.com -or- cgnoerlich@fsfe.org"
#~ msgstr ""
#~ "\n"
#~ "e-post: carsten@dvdisaster.com -eller- cgnoerlich@fsfe.org"
#~ msgid "illegal data_mode: %d"
#~ msgstr "otillåten data_mode: %d"

View File

@@ -1,8 +1,7 @@
# Bash based configure - library of test functions
# Copyright (C) 2004-2016 Carsten Gn<47>rlich
#
# Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
# Project homepage: http://www.dvdisaster.org
# Email: support@dvdisaster.org
#
# Bash based configure is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -2,8 +2,7 @@
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* CRC32 code based upon public domain code by Ross Williams (see notes below)
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -1003,6 +1003,7 @@ int main(int argc, char *argv[])
PrintCLI(_(" --resource-file p - get resource file from given path\n"));
PrintCLI(_(" --speed-warning n - print warning if speed changes by more than n percent\n"));
PrintCLI(_(" --spinup-delay n - wait n seconds for drive to spin up\n"));
PrintCLI(_(" --version - print version and some configuration info\n"));
if(Closure->debugMode)
{ PrintCLI("\n");

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,11 +1,11 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* The Reed-Solomon error correction draws a lot of inspiration - and even code -
* from Phil Karn's excellent Reed-Solomon library: http://www.ka9q.net/code/fec/
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -23,8 +23,6 @@
#include "dvdisaster.h"
#include "help-dialogs.h"
/***
*** Online help system for the preferences
***/
@@ -589,13 +587,6 @@ GtkWidget* ShowTextfile(char *title, char *explanation, char *file,
* About dialog
*/
static void show_modifying(void)
{ ShowTextfile(_("windowtitle|Modifying dvdisaster"),
_("<big>Modifying dvdisaster</big>\n"
"<i>Your changes are not ours.</i>"),
"README.MODIFYING", NULL, NULL);
}
static gint about_cb(GtkWidget *widget, GdkEvent *event, gpointer data)
{ GtkWidget *lab = GTK_BIN(widget)->child;
char *label = (char*)data;
@@ -607,7 +598,6 @@ static gint about_cb(GtkWidget *widget, GdkEvent *event, gpointer data)
{ case GDK_BUTTON_PRESS:
if(!inside) return FALSE; /* Defect in certain Gtk versions? */
if(!strcmp(label,"GPL")) ShowGPL();
else if(!strcmp(label,"MODIFYING")) show_modifying();
else if(strlen(label) > 4 && !strncmp(label, "http", 4)) ShowHTML(g_strdup(label));
else ShowPDF(g_strdup(label));
break;
@@ -726,9 +716,7 @@ void AboutTextWithLink(GtkWidget *parent, char *text, char *action)
void AboutDialog()
{ GtkWidget *about, *vbox, *sep;
char *text;
#ifndef MODIFIED_SOURCE
const char *lang;
#endif
/* Create the dialog */
about = gtk_dialog_new_with_buttons(_utf("windowtitle|About dvdisaster"),
@@ -749,16 +737,7 @@ void AboutDialog()
AboutText(vbox, "%s", text);
g_free(text);
#ifdef MODIFIED_SOURCE
AboutTextWithLink(vbox,
_("[Modified version]\n"
"Copyright 2019-2021 Stephane Lesimple\n"
"Copyright 2005-2017 Debian Optical Media Tools Team\n"
"Copyright 2004-2017 Carsten Gnoerlich"),
"MODIFYING");
#else
AboutText(vbox, _("Copyright 2004-2017 Carsten Gnoerlich"));
#endif
AboutText(vbox, _("Copyright 2004-2017 Carsten Gnoerlich.\nCopyright 2019 The dvdisaster development team."));
sep = gtk_hseparator_new();
gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 10);
@@ -774,27 +753,10 @@ void AboutDialog()
"under the conditions of the [GNU General Public License].\n"),
"GPL");
#ifdef MODIFIED_SOURCE
AboutTextWithLink(vbox, _("\nThis version is <b>not the original</b>. It has been patched\n"
"for Debian to support DVD-ROMs (with and without encryption),\n"
"and subsequently patched again to support a CLI-only build, among other things.\n\n"
"Please do not bother the original authors of dvdisaster nor the Debian maintainer\n"
"but submit bugreports against [GitHub] instead.\n"),
"https://github.com/speed47/dvdisaster");
AboutText(vbox, _("\ne-mail: support@dvdisaster.org"));
#else
lang = g_getenv("LANG");
if(lang && !strncmp(lang, "de", 2))
{ AboutTextWithLink(vbox, "\n[http://www.dvdisaster.de]", "http://www.dvdisaster.de");
}
else
{ AboutTextWithLink(vbox, "\n[http://www.dvdisaster.com]", "http://www.dvdisaster.com");
}
AboutText(vbox, "WWW: %s", HOMEPAGE);
AboutText(vbox, _("\ne-mail: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org"));
#ifdef SYS_NETBSD
AboutText(vbox, _("\nNetBSD port: Sergey Svishchev &lt;svs@ropnet.ru&gt;"));
#endif
#endif
/* Show it */

View File

@@ -1,9 +1,9 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2006 Andrei Grecu
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -215,7 +215,8 @@ static void print_greetings(FILE *where)
if(greetings_shown) return;
greetings_shown = 1;
g_fprintf(where, "%s\n%s.\n", Closure->versionString, _("Copyright 2004-2017 Carsten Gnoerlich"));
g_fprintf(where, "%s.\n%s\n", Closure->versionString,
_("Copyright 2004-2017 Carsten Gnoerlich.\nCopyright 2019 The dvdisaster development team."));
/* 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

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -119,7 +119,7 @@ static EccInfo* open_ecc_file(int mode)
PrintCLI(_("* Warning: This ecc file requires dvdisaster-%d.%d!\n"
"* Proceeding could trigger incorrect behaviour.\n"
"* Please read the image without using this ecc file\n"
"* or visit http://www.dvdisaster.org for an upgrade.\n\n"),
"* or upgrade dvdisaster.\n\n"),
ei->eh->neededVersion/10000,
(ei->eh->neededVersion%10000)/100);

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -878,14 +878,14 @@ void ReadMediumLinear(gpointer data)
_("This ecc file requires dvdisaster-%d.%d!\n\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please read the image without using this ecc file\n"
"or visit http://www.dvdisaster.org for an upgrade.\n\n"),
"or upgrade dvdisaster.\n\n"),
rc->eccHeader->neededVersion/10000,
(rc->eccHeader->neededVersion%10000)/100);
else
answer = ModalWarningOrCLI(GTK_MESSAGE_WARNING, GTK_BUTTONS_OK_CANCEL, NULL,
_("This image requires dvdisaster-%d.%d!\n\n"
"Proceeding could trigger incorrect behaviour.\n"
"Please visit http://www.dvdisaster.org for an upgrade.\n\n"),
"Please upgrade dvdisaster.\n\n"),
rc->eccHeader->neededVersion/10000,
(rc->eccHeader->neededVersion%10000)/100);
PrintCLI("\n");

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,9 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,11 +1,11 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* The Reed-Solomon error correction draws a lot of inspiration - and even code -
* from Phil Karn's excellent Reed-Solomon library: http://www.ka9q.net/code/fec/
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,11 +1,11 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* The Reed-Solomon error correction draws a lot of inspiration - and even code -
* from Phil Karn's excellent Reed-Solomon library: http://www.ka9q.net/code/fec/
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -686,7 +686,7 @@ process_ecc:
else
{ PrintLog(_("* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"),
"* : Please upgrade dvdisaster.\n"),
eh->neededVersion/10000,
(eh->neededVersion%10000)/100);

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -1014,7 +1014,7 @@ continue_with_ecc:
else
{ PrintLog(_("* requires : dvdisaster-%d.%d (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"),
"* : Please upgrade dvdisaster.\n"),
eh->neededVersion/10000,
(eh->neededVersion%10000)/100);

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -871,7 +871,7 @@ void RS03Verify(Image *image)
else
{ PrintLog(_("* requires : dvdisaster-%s (BAD)\n"
"* Warning : The following output might be incorrect.\n"
"* : Please visit http://www.dvdisaster.org for an upgrade.\n"),
"* : Please upgrade dvdisaster.\n"),
version);
#ifndef WITH_CLI_ONLY_YES

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*
@@ -363,3 +363,4 @@ void ShowPDF(char *target)
try_viewer(bi);
#endif
}

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*

View File

@@ -1,8 +1,8 @@
/* dvdisaster: Additional error correction for optical media.
* Copyright (C) 2004-2017 Carsten Gnoerlich.
* Copyright (C) 2019 The dvdisaster development team.
*
* Email: carsten@dvdisaster.org -or- cgnoerlich@fsfe.org
* Project homepage: http://www.dvdisaster.org
* Email: support@dvdisaster.org
*
* This file is part of dvdisaster.
*