summaryrefslogtreecommitdiffstats
path: root/src/pdf-stock/test.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/pdf-stock/test.vala')
-rw-r--r--src/pdf-stock/test.vala8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pdf-stock/test.vala b/src/pdf-stock/test.vala
index cc3da4f..92b6232 100644
--- a/src/pdf-stock/test.vala
+++ b/src/pdf-stock/test.vala
@@ -16,12 +16,14 @@
public static int main(string args[]) {
try {
PDFStock stock = Bus.get_proxy_sync(BusType.SYSTEM, "io.mainframe.shopsystem.StockPDF", "/io/mainframe/shopsystem/stockpdf");
- var pdfdata = stock.generate();
+ var pdfdata = stock.generate(true);
FileUtils.set_contents("test.pdf", (string) pdfdata, pdfdata.length);
} catch(IOError e) {
- error("IOError: %s", e.message);
+ error(_("IO Error: %s"), e.message);
} catch(FileError e) {
- error("FileError: %s", e.message);
+ error(_("File Error: %s"), e.message);
+ } catch(DBusError e) {
+ error(_("DBus Error: %s"), e.message);
}
return 0;