Package: kbarcode
Version: 1.8.0-2
Severity: normal
Tags: patch
kbarcode does not have a menu item for Codabar without using the checksum,
while it does support this option for many other formats.
While a better solution might have been to add a checkbox for this feature, I
am including a quick fix that adds the missing menu item. I have NOT provided
internationalization patches for the new menu item string.
--- kbarcode-1.8.0/kbarcode/mybarcode.cpp.old 2005-08-02 01:22:31.000000000
-0500
+++ kbarcode-1.8.0/kbarcode/mybarcode.cpp 2005-08-02 01:24:54.000000000
-0500
@@ -546,6 +546,7 @@
codes.append( fillStruct( "i25 -c", i18n("interleaved 2 of 5 (only
digits, no checksum)"), GNU_BARCODE ) );
codes.append( fillStruct( "128raw", i18n("Raw code 128"),
GNU_BARCODE ) );
codes.append( fillStruct( "cbr", i18n("Codabar"), GNU_BARCODE ) );
+ codes.append( fillStruct( "cbr -c", i18n("Codabar (no checksum)"),
GNU_BARCODE ) );
codes.append( fillStruct( "msi", i18n("MSI"), GNU_BARCODE ) );
codes.append( fillStruct( "pls", i18n("Plessey"), GNU_BARCODE ) );
codes.append( fillStruct( "code93", i18n("Code 93"), GNU_BARCODE )
);