Your message dated Fri, 12 Jun 2009 13:17:21 +0000
with message-id <[email protected]>
and subject line Bug#530708: fixed in dvdbackup 0.4.1-1
has caused the Debian Bug report #530708,
regarding dvdbackup: Patches for grammatical errors
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
530708: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=530708
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dvdbackup
Version: 0.4
Severity: minor
Tags: patch

Hi,

The following patches should fix some errors and oddities. I've found them while translating dvdbackup.


The following patch adds missing separators (:,):
missing_separators.diff


These strings need to be translated independently and it is possible to
reduce these to single strings to reduce translators work:
summarization.diff


The following patch fixes a grammatical error ("a" instead of "an"):
syntax.diff


Greetings,

Chris

diff -ru dvdbackup.orig/src/dvdbackup.c dvdbackup/src/dvdbackup.c
--- dvdbackup.orig/src/dvdbackup.c	2009-02-20 00:00:52.000000000 +0100
+++ dvdbackup/src/dvdbackup.c	2009-05-25 12:07:17.000000000 +0200
@@ -284,7 +284,7 @@
 			to_read = left;
 		}
 		if ((rbuff = DVDReadBlocks(dvd_file,soffset, to_read, buffer)) < 0) {
-			fprintf(stderr, _("Error reading MENU VOB %d != %d\n"), rbuff, to_read);
+			fprintf(stderr, _("Error reading MENU VOB: %d != %d\n"), rbuff, to_read);
 			free(buffer);
 			DVDCloseFile(dvd_file);
 			close(streamout);
@@ -971,7 +971,7 @@
 
 
 	if (stat(targetname, &fileinfo) == 0) {
-		fprintf(stderr, _("The Title file %s exists will try to over write it.\n"), targetname);
+		fprintf(stderr, _("The Title file %s exists, will try to over write it.\n"), targetname);
 		if (! S_ISREG(fileinfo.st_mode)) {
 			fprintf(stderr,_("The Title %s file is not valid, it may be a directory\n"), targetname);
 			return(1);
diff -ru dvdbackup.orig/src/dvdbackup.c dvdbackup/src/dvdbackup.c
--- dvdbackup.orig/src/dvdbackup.c	2009-02-20 00:00:52.000000000 +0100
+++ dvdbackup/src/dvdbackup.c	2009-05-25 13:43:03.000000000 +0200
@@ -971,9 +971,9 @@
 
 
 	if (stat(targetname, &fileinfo) == 0) {
-		fprintf(stderr, _("The Title file %s exists will try to over write it.\n"), targetname);
+		fprintf(stderr, _("The %s file %s exists will try to over write it.\n"), _("Title"), targetname);
 		if (! S_ISREG(fileinfo.st_mode)) {
-			fprintf(stderr,_("The Title %s file is not valid, it may be a directory\n"), targetname);
+			fprintf(stderr,_("The %s %s file is not valid, it may be a directory\n"), _("Title"), targetname);
 			return(1);
 		} else {
 			if ((streamout = open(targetname, O_WRONLY | O_TRUNC, 0666)) == -1) {
@@ -1049,9 +1049,9 @@
 	sprintf(targetname,"%s/%s/VIDEO_TS/%s",targetdir, title_name, filename);
 
 	if (stat(targetname, &fileinfo) == 0) {
-		fprintf(stderr, _("The Menu file %s exists will try to over write it.\n"), targetname);
+		fprintf(stderr, _("The %s file %s exists will try to over write it.\n"), _("Menu"), targetname);
 		if (! S_ISREG(fileinfo.st_mode)) {
-			fprintf(stderr,_("The Menu %s file is not valid, it may be a directory\n"), targetname);
+			fprintf(stderr,_("The %s %s file is not valid, it may be a directory\n"), _("Menu"), targetname);
 			DVDCloseFile(dvd_file);
 			return(1);
 		} else {
@@ -1121,17 +1121,17 @@
 	}
 
 	if (stat(targetname_ifo, &fileinfo) == 0) {
-		fprintf(stderr, _("The IFO file %s exists will try to over write it.\n"), targetname_ifo);
+		fprintf(stderr, _("The %s file %s exists will try to over write it.\n"), "IFO", targetname_ifo);
 		if (! S_ISREG(fileinfo.st_mode)) {
-			fprintf(stderr,_("The IFO %s file is not valid, it may be a directory\n"), targetname_ifo);
+			fprintf(stderr,_("The %s %s file is not valid, it may be a directory\n"), "IFO", targetname_ifo);
 			return(1);
 		}
 	}
 
 	if (stat(targetname_bup, &fileinfo) == 0) {
-		fprintf(stderr, _("The BUP file %s exists will try to over write it.\n"), targetname_bup);
+		fprintf(stderr, _("The %s file %s exists will try to over write it.\n"), "BUP", targetname_bup);
 		if (! S_ISREG(fileinfo.st_mode)) {
-			fprintf(stderr,_("The BUP %s file is not valid, it may be a directory\n"), targetname_bup);
+			fprintf(stderr,_("The %s %s file is not valid, it may be a directory\n"), "BUP", targetname_bup);
 			return(1);
 		}
 	}
diff -ru dvdbackup.orig/src/main.c dvdbackup/src/main.c
--- dvdbackup.orig/src/main.c	2009-02-20 00:00:52.000000000 +0100
+++ dvdbackup/src/main.c	2009-05-25 12:14:09.000000000 +0200
@@ -403,7 +403,7 @@
 
 	if (stat(targetname, &fileinfo) == 0) {
 		if (! S_ISDIR(fileinfo.st_mode)) {
-			fprintf(stderr,_("The target directory is not valid; it may be a ordinary file\n"));
+			fprintf(stderr,_("The target directory is not valid; it may be an ordinary file\n"));
 		}
 	} else {
 		if (mkdir(targetname, 0777) != 0) {
@@ -419,7 +419,7 @@
 
 	if (stat(targetname, &fileinfo) == 0) {
 		if (! S_ISDIR(fileinfo.st_mode)) {
-			fprintf(stderr,_("The title directory is not valid; it may be a ordinary file\n"));
+			fprintf(stderr,_("The title directory is not valid; it may be an ordinary file\n"));
 		}
 	} else {
 		if (mkdir(targetname, 0777) != 0) {
@@ -434,7 +434,7 @@
 
 	if (stat(targetname, &fileinfo) == 0) {
 		if (! S_ISDIR(fileinfo.st_mode)) {
-			fprintf(stderr,_("The VIDEO_TS directory is not valid; it may be a ordinary file\n"));
+			fprintf(stderr,_("The VIDEO_TS directory is not valid; it may be an ordinary file\n"));
 		}
 	} else {
 		if (mkdir(targetname, 0777) != 0) {

--- End Message ---
--- Begin Message ---
Source: dvdbackup
Source-Version: 0.4.1-1

We believe that the bug you reported is fixed in the latest version of
dvdbackup, which is due to be installed in the Debian FTP archive:

dvdbackup-dbg_0.4.1-1_i386.deb
  to pool/main/d/dvdbackup/dvdbackup-dbg_0.4.1-1_i386.deb
dvdbackup_0.4.1-1.diff.gz
  to pool/main/d/dvdbackup/dvdbackup_0.4.1-1.diff.gz
dvdbackup_0.4.1-1.dsc
  to pool/main/d/dvdbackup/dvdbackup_0.4.1-1.dsc
dvdbackup_0.4.1-1_i386.deb
  to pool/main/d/dvdbackup/dvdbackup_0.4.1-1_i386.deb
dvdbackup_0.4.1.orig.tar.gz
  to pool/main/d/dvdbackup/dvdbackup_0.4.1.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benjamin Drung <[email protected]> (supplier of updated dvdbackup package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Tue, 09 Jun 2009 02:11:29 +0200
Source: dvdbackup
Binary: dvdbackup dvdbackup-dbg
Architecture: source i386
Version: 0.4.1-1
Distribution: unstable
Urgency: high
Maintainer: Stephen Gran <[email protected]>
Changed-By: Benjamin Drung <[email protected]>
Description: 
 dvdbackup  - tool to rip DVD's from the command line
 dvdbackup-dbg - debug files for dvdbackup
Closes: 529073 530708 531568
Changes: 
 dvdbackup (0.4.1-1) unstable; urgency=high
 .
   * New upstream release
     + Fixes offset bug, which results in wrong .vob files (Closes: #529073).
     + German translation; thanks to Chris Leick (Closes: #531568).
     + Fixes grammatical errors (Closes: #530708).
   * debian/control:
     - Update my e-mail address.
     - Use longer description for dvdbackup-dbg.
   * debian/copyright: Refer to GPL-3 instead of versionless GPL.
   * Switch to debhelper 7.
   * Update debian/copyright to Debian Enhancement Proposals 5.
Checksums-Sha1: 
 185f9712fdfdd74599e5f38963fe29620099617d 1213 dvdbackup_0.4.1-1.dsc
 3e31cd3915b06be24e4387b248f23fa873182e45 232885 dvdbackup_0.4.1.orig.tar.gz
 595c06bfbb96aeee668c88c1b65ccefb29f2dd56 4161 dvdbackup_0.4.1-1.diff.gz
 d6351977d03b210a72926634e2449ba309a8c56b 39074 dvdbackup_0.4.1-1_i386.deb
 e629213d0d93a71d5a6713576ad29cd62472de37 31632 dvdbackup-dbg_0.4.1-1_i386.deb
Checksums-Sha256: 
 476483c6bf845c420608227b59ac58a4488d9015bbbd04aefe97ed8640303949 1213 
dvdbackup_0.4.1-1.dsc
 ac9138b3265ef7f113d139e68130663937ce25322ae00922f74bab55aa63347b 232885 
dvdbackup_0.4.1.orig.tar.gz
 3f78f9d28d3347cb3ecba0dc10c5530ab890f24604ddac0ab6de4c62a216a540 4161 
dvdbackup_0.4.1-1.diff.gz
 e2f37ce5812a073568bc868567f755cc2db2ff7da801a3e22b7005a776f1ff5c 39074 
dvdbackup_0.4.1-1_i386.deb
 c9dc09ee6e127f08d1d93649273d0fd6df6047f4dce24f60b874c18ac8a459fb 31632 
dvdbackup-dbg_0.4.1-1_i386.deb
Files: 
 ec2ca164bcfa37872ab879818512fb08 1213 video optional dvdbackup_0.4.1-1.dsc
 e23ed1a0d5ab97a81eebc93682c0bfeb 232885 video optional 
dvdbackup_0.4.1.orig.tar.gz
 233dcaaff91ddbd0f90f5a4afffffd28 4161 video optional dvdbackup_0.4.1-1.diff.gz
 1b79e5816bc5866643d0c4de9af3c0e3 39074 video optional 
dvdbackup_0.4.1-1_i386.deb
 eb9016a3446e9362b4826bf7a6fefb2f 31632 debug extra 
dvdbackup-dbg_0.4.1-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkoyU0EACgkQAukwV0RN2VDHEQCggIfD+2Osku7m/NwKDnTJzRn7
xqEAniCn0wGIoQQNJk6TfQgp/eSqpTPc
=soaA
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to