commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r7732 - in trunk/gnue-reports: . doc doc/man po


From: reinhard
Subject: [gnue] r7732 - in trunk/gnue-reports: . doc doc/man po
Date: Thu, 14 Jul 2005 05:00:53 -0500 (CDT)

Author: reinhard
Date: 2005-07-14 05:00:52 -0500 (Thu, 14 Jul 2005)
New Revision: 7732

Modified:
   trunk/gnue-reports/NEWS
   trunk/gnue-reports/doc/gnue-reports.dtd
   trunk/gnue-reports/doc/man/gnue-reports-server.1
   trunk/gnue-reports/doc/man/gnue-reports.1
   trunk/gnue-reports/po/de.po
   trunk/gnue-reports/po/fr.po
   trunk/gnue-reports/po/hu.po
Log:
Released 0.1.7.99-beta1.

Modified: trunk/gnue-reports/NEWS
===================================================================
--- trunk/gnue-reports/NEWS     2005-07-14 09:44:35 UTC (rev 7731)
+++ trunk/gnue-reports/NEWS     2005-07-14 10:00:52 UTC (rev 7732)
@@ -1,3 +1,7 @@
+New features/changes in version 0.1.8: (2004-11-27)
+* Adapted to gnue-common 0.6
+* Removed unneeded pstats module
+
 New features/changes in version 0.1.7: (2004-11-27)
 * Added missing reports-filters.conf to tarball
 

Modified: trunk/gnue-reports/doc/gnue-reports.dtd
===================================================================
--- trunk/gnue-reports/doc/gnue-reports.dtd     2005-07-14 09:44:35 UTC (rev 
7731)
+++ trunk/gnue-reports/doc/gnue-reports.dtd     2005-07-14 10:00:52 UTC (rev 
7732)
@@ -1,7 +1,7 @@
 <!-- GNUe Reports DTD (Version 0.1.0.99) -->
 
 <!--
-     Copyright 2001-2004 Free Software Foundation
+     Copyright 2001-2005 Free Software Foundation
 
      This file is part of GNU Enterprise.
 
@@ -60,12 +60,13 @@
 <!-- ======================== -->
 <!ELEMENT import-trigger EMPTY>
 <!ATTLIST import-trigger library %name; #REQUIRED>
+<!ATTLIST import-trigger file %name; #IMPLIED>
 <!ATTLIST import-trigger language %name; #FIXED "python">
 <!ATTLIST import-trigger name ID #IMPLIED>
 <!ATTLIST import-trigger src IDREF #IMPLIED>
 <!ATTLIST import-trigger type CDATA #IMPLIED>
 
-<!ELEMENT layout (param*, section+, summ*, #PCDATA)>
+<!ELEMENT layout (formula*, param*, section+, summ*, #PCDATA)>
 <!ATTLIST layout format %text; #IMPLIED>
 <!ATTLIST layout suppressGNUeTags %boolean;>
 
@@ -76,6 +77,7 @@
 <!ELEMENT sources (connection*, datasource*, import-datasource*)>
 
 <!ELEMENT trigger EMPTY>
+<!ATTLIST trigger file %name; #IMPLIED>
 <!ATTLIST trigger language %name; #FIXED "python">
 <!ATTLIST trigger name ID #IMPLIED>
 <!ATTLIST trigger src IDREF #IMPLIED>
@@ -85,6 +87,11 @@
 <!-- ======================== -->
 <!-- Child elements of layout -->
 <!-- ======================== -->
+<!ELEMENT formula EMPTY>
+<!ATTLIST formula format %name; #IMPLIED>
+<!ATTLIST formula name %name; #IMPLIED>
+<!ATTLIST formula section %name; #IMPLIED>
+
 <!ELEMENT param EMPTY>
 <!ATTLIST param name %name; #REQUIRED>
 <!ATTLIST param format %name; #IMPLIED>
@@ -142,9 +149,15 @@
 <!-- service: TODO -->
 <!ATTLIST connection service %text; #IMPLIED>
 
-<!ELEMENT datasource (condition*, sql*, staticset*)>
+<!-- A datasource provides a link to a database table or some similar data 
+     store. -->
+<!ELEMENT datasource (condition*, sortorder*, sql*, staticset*)>
+<!-- name: Unique name of the datasource. -->
 <!ATTLIST datasource name ID #REQUIRED>
+<!-- cache: Cache this number of records -->
 <!ATTLIST datasource cache %whole; "5">
+<!-- connection: The name of the connection as in connections.conf that points 
+       to a valid database. -->
 <!ATTLIST datasource connection %name; #IMPLIED>
 <!-- DEPRECATED: The "database" attribute of "datasource" has been deprecated 
                  [Use {connection} attribute instead] -->
@@ -153,7 +166,9 @@
        relationship, this property contains a comma-separated list of the this 
        (child's) datasource's field(s) used for linking. -->
 <!ATTLIST datasource detaillink %text; #IMPLIED>
+<!-- distinct: TODO -->
 <!ATTLIST datasource distinct %boolean;>
+<!-- explicitfields: TODO -->
 <!ATTLIST datasource explicitfields %text; #IMPLIED>
 <!-- master: If this datasource is the child in a master/detail relationship, 
        this property contains the name of the master datasource. -->
@@ -162,7 +177,12 @@
        relationship, this property contains a comma-separated list of the 
        master datasource's field(s) used for linking. -->
 <!ATTLIST datasource masterlink %text; #IMPLIED>
+<!-- DEPRECATED: The "order_by" attribute of "datasource" has been deprecated 
+                 [Use {sortorder} tag instead] -->
 <!ATTLIST datasource order_by %text; #IMPLIED>
+<!-- prequery: If true, the datasource is populated on form startup. If false 
+       (default), the form starts out with an empty record until the user or a 
+       trigger queries the database. -->
 <!ATTLIST datasource prequery %boolean;>
 <!-- primarykey: Comma-separated list of the fields that make up the primary 
        key. -->
@@ -174,14 +194,21 @@
 <!-- requery: Requery a record after posting it; requires {primarykey} support 
        and a non-null primary key value at the time of update (whether via a 
        trigger or by the use of {primarykeyseq}. -->
-<!ATTLIST datasource requery %text; "True">
-<!ATTLIST datasource table %name; #IMPLIED>
+<!ATTLIST datasource requery %boolean;>
+<!-- table: The table in the database this datasource will point to. -->
+<!ATTLIST datasource table %name; "">
 <!ATTLIST datasource type %name; "object">
 
+<!-- A datasource provides a link to a database table or some similar data 
+     store. -->
 <!ELEMENT import-datasource EMPTY>
+<!-- name: Unique name of the datasource. -->
 <!ATTLIST import-datasource name ID #REQUIRED>
 <!ATTLIST import-datasource library %name; #REQUIRED>
+<!-- cache: Cache this number of records -->
 <!ATTLIST import-datasource cache %whole; "5">
+<!-- connection: The name of the connection as in connections.conf that points 
+       to a valid database. -->
 <!ATTLIST import-datasource connection %name; #IMPLIED>
 <!-- DEPRECATED: The "database" attribute of "import-datasource" has been 
                  deprecated [Use {connection} attribute instead] -->
@@ -190,7 +217,9 @@
        relationship, this property contains a comma-separated list of the this 
        (child's) datasource's field(s) used for linking. -->
 <!ATTLIST import-datasource detaillink %text; #IMPLIED>
+<!-- distinct: TODO -->
 <!ATTLIST import-datasource distinct %boolean;>
+<!-- explicitfields: TODO -->
 <!ATTLIST import-datasource explicitfields %text; #IMPLIED>
 <!-- master: If this datasource is the child in a master/detail relationship, 
        this property contains the name of the master datasource. -->
@@ -199,7 +228,12 @@
        relationship, this property contains a comma-separated list of the 
        master datasource's field(s) used for linking. -->
 <!ATTLIST import-datasource masterlink %text; #IMPLIED>
+<!-- DEPRECATED: The "order_by" attribute of "import-datasource" has been 
+                 deprecated [Use {sortorder} tag instead] -->
 <!ATTLIST import-datasource order_by %text; #IMPLIED>
+<!-- prequery: If true, the datasource is populated on form startup. If false 
+       (default), the form starts out with an empty record until the user or a 
+       trigger queries the database. -->
 <!ATTLIST import-datasource prequery %boolean;>
 <!-- primarykey: Comma-separated list of the fields that make up the primary 
        key. -->
@@ -211,8 +245,9 @@
 <!-- requery: Requery a record after posting it; requires {primarykey} support 
        and a non-null primary key value at the time of update (whether via a 
        trigger or by the use of {primarykeyseq}. -->
-<!ATTLIST import-datasource requery %text; "True">
-<!ATTLIST import-datasource table %name; #IMPLIED>
+<!ATTLIST import-datasource requery %boolean;>
+<!-- table: The table in the database this datasource will point to. -->
+<!ATTLIST import-datasource table %name; "">
 <!ATTLIST import-datasource type %name; "object">
 
 
@@ -250,6 +285,8 @@
                      negate*, not*, notbetween*, notlike*, notnull*, null*, 
                      or*)>
 
+<!ELEMENT sortorder (sortfield*)>
+
 <!ELEMENT sql EMPTY>
 
 <!ELEMENT staticset (staticsetrow*)>
@@ -259,47 +296,86 @@
 <!-- =========================== -->
 <!-- Child elements of condition -->
 <!-- =========================== -->
+<!-- Implements logical AND relation. -->
 <!ELEMENT and (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
                ne*, negate*, not*, notbetween*, notlike*, notnull*, null*, 
                or*)>
 
-<!ELEMENT between (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} BETWEEN {value1} {value2} condition. -->
+<!ELEMENT between (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, 
+                   mul*, sub*, upper*)>
 
-<!ELEMENT eq (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} = {value} condition. -->
+<!ELEMENT eq (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+              sub*, upper*)>
 
-<!ELEMENT ge (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} >= {value} condition. -->
+<!ELEMENT ge (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+              sub*, upper*)>
 
-<!ELEMENT gt (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} > {value} condition. -->
+<!ELEMENT gt (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+              sub*, upper*)>
 
-<!ELEMENT le (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} <= {value} condition. -->
+<!ELEMENT le (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+              sub*, upper*)>
 
-<!ELEMENT like (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} LIKE {value} condition. -->
+<!ELEMENT like (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+                sub*, upper*)>
 
-<!ELEMENT lt (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} < {value} condition. -->
+<!ELEMENT lt (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+              sub*, upper*)>
 
-<!ELEMENT ne (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} <> {value} condition. -->
+<!ELEMENT ne (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, mul*, 
+              sub*, upper*)>
 
+<!-- Implements numerical negation. -->
 <!ELEMENT negate (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
                   ne*, negate*, not*, notbetween*, notlike*, or*)>
 
+<!-- Implements logical NOT relation. -->
 <!ELEMENT not (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
                ne*, negate*, not*, notbetween*, notlike*, notnull*, null*, 
                or*)>
 
-<!ELEMENT notbetween (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} NOT BETWEEN {value1} {value2} condition. -->
+<!ELEMENT notbetween (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, 
+                      mul*, sub*, upper*)>
 
-<!ELEMENT notlike (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
+<!-- Implements a {field} NOT LIKE {value} condition. -->
+<!ELEMENT notlike (add*, cconst*, cfield*, cparam*, div*, exist*, lower*, 
+                   mul*, sub*, upper*)>
 
-<!ELEMENT notnull EMPTY>
+<!-- Implements a {field} IS NOT NULL condition. -->
+<!ELEMENT notnull (cfield*)>
 
-<!ELEMENT null EMPTY>
+<!-- Implements a {field} IS NULL condition. -->
+<!ELEMENT null (cfield*)>
 
+<!-- Implements logical OR relation. -->
 <!ELEMENT or (and*, between*, conditions*, eq*, ge*, gt*, le*, like*, lt*, 
               ne*, negate*, not*, notbetween*, notlike*, notnull*, null*, 
               or*)>
 
 
 <!-- =========================== -->
+<!-- Child elements of sortorder -->
+<!-- =========================== -->
+<!ELEMENT sortfield EMPTY>
+<!-- name: The name of the field by which the datasource will be ordered. -->
+<!ATTLIST sortfield name ID #REQUIRED>
+<!-- descending: Selects if the ordering is done in ascending (default) or in 
+       descending order. -->
+<!ATTLIST sortfield descending %boolean;>
+<!-- ignorecase: Selects wether the ordering is case-sensitive or not. -->
+<!ATTLIST sortfield ignorecase %boolean;>
+
+
+<!-- =========================== -->
 <!-- Child elements of staticset -->
 <!-- =========================== -->
 <!ELEMENT staticsetrow (staticsetfield*)>
@@ -316,25 +392,47 @@
 <!-- ========================= -->
 <!-- Child elements of between -->
 <!-- ========================= -->
+<!-- Implements addition. -->
 <!ELEMENT add (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
 
+<!-- Defines a constant value in a condition. -->
 <!ELEMENT cconst EMPTY>
 <!ATTLIST cconst value %text; #REQUIRED>
 <!ATTLIST cconst type %text; #IMPLIED>
 
+<!-- Defines a database table's field in a condition. -->
 <!ELEMENT cfield EMPTY>
 <!ATTLIST cfield name %name; #REQUIRED>
 
+<!-- Defines a parameter value in a condition. -->
 <!ELEMENT cparam EMPTY>
 <!ATTLIST cparam name ID #REQUIRED>
 
+<!-- Implements division. -->
 <!ELEMENT div (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
 
+<!-- Implements an exist condition. -->
+<!ELEMENT exist EMPTY>
+<!-- detaillink: TODO -->
+<!ATTLIST exist detaillink %text; #REQUIRED>
+<!-- masterlink: TODO -->
+<!ATTLIST exist masterlink %text; #REQUIRED>
+<!-- table: TODO -->
+<!ATTLIST exist table %name; #REQUIRED>
+
+<!-- Implements lower({value}). -->
+<!ELEMENT lower (cfield*)>
+
+<!-- Implements multiplication. -->
 <!ELEMENT mul (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
 
+<!-- Implements subtraction. -->
 <!ELEMENT sub (add*, cconst*, cfield*, cparam*, div*, mul*, sub*)>
 
+<!-- Implements upper({value}). -->
+<!ELEMENT upper (cfield*)>
 
+
 <!-- ============================== -->
 <!-- Child elements of staticsetrow -->
 <!-- ============================== -->
@@ -344,5 +442,5 @@
 
 
 <!-- This DTD was created by gnuedtd
-     Updated: 2004-11-27 14:46:29   -->
+     Updated: 2005-07-14 11:53:11   -->
 

Modified: trunk/gnue-reports/doc/man/gnue-reports-server.1
===================================================================
--- trunk/gnue-reports/doc/man/gnue-reports-server.1    2005-07-14 09:44:35 UTC 
(rev 7731)
+++ trunk/gnue-reports/doc/man/gnue-reports-server.1    2005-07-14 10:00:52 UTC 
(rev 7732)
@@ -1,4 +1,4 @@
-.TH GNUE\-REPORTS\-SERVER 1 "27 November 2004" "GNUe Reports Server"
+.TH GNUE\-REPORTS\-SERVER 1 "14 July 2005" "GNUe Reports Server"
 .SH NAME
 gnue\-reports\-server \- GNUe Reports Server
 .SH SYNOPSIS
@@ -54,6 +54,9 @@
 .B \-\-password <password>, \-p
 Set the password for the used database.
 .TP
+.B \-\-pidfile <pid-file>, \-P
+Filename to store the server's process id.
+.TP
 .B \-\-rpc-port <port>
 Set the GNURPC port. For more information on GNURPC have a look at 
 common/doc/RPC\-abstraction.
@@ -64,6 +67,9 @@
  For more information on GNURPC connection types have a look at 
 common/doc/RPC\-abstraction.
 .TP
+.B \-\-silent
+Displays no output at all.
+.TP
 .B \-\-username <user>, \-u
 Set the username for the used database.
 .TP
@@ -73,6 +79,13 @@
 .B DEVELOPER OPTIONS
 .TP
 .TP
+.B \-\-debug-gc <logfile>, \-g
+Debug Python's garbage collection on a SIGUSR1. If the argument is 
+empty 'garbage.log' will be used as logfile.
+.TP
+.B \-\-debug-imports
+All python imports are logged to stdout
+.TP
 .B \-\-interactive-debugger
 Run the app inside Python's built\-in debugger
 .TP
@@ -101,7 +114,7 @@
 that will allow the bug to be reproduced,
 and say which version of this tool you are using.
 .SH COPYRIGHT
-Copyright \(co 2000-2004 Free Software Foundation, Inc.
+Copyright \(co 2000-2005 Free Software Foundation, Inc.
 .LP
 gnue\-reports\-server 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

Modified: trunk/gnue-reports/doc/man/gnue-reports.1
===================================================================
--- trunk/gnue-reports/doc/man/gnue-reports.1   2005-07-14 09:44:35 UTC (rev 
7731)
+++ trunk/gnue-reports/doc/man/gnue-reports.1   2005-07-14 10:00:52 UTC (rev 
7732)
@@ -1,4 +1,4 @@
-.TH GNUE\-REPORTS 1 "27 November 2004" "GNUe Reports Client"
+.TH GNUE\-REPORTS 1 "14 July 2005" "GNUe Reports Client"
 .SH NAME
 gnue\-reports \- GNUe Reports Client
 .SH SYNOPSIS
@@ -126,6 +126,9 @@
 if \-\-debug\-level is specified, then suppressed text will be 
 output as debugging information (at debug level 1)
 .TP
+.B \-\-silent
+Displays no output at all.
+.TP
 .B \-\-sort <sort>, \-s
 Select the "sort\-option" used to sort the report.
 .TP
@@ -146,6 +149,13 @@
 .B DEVELOPER OPTIONS
 .TP
 .TP
+.B \-\-debug-gc <logfile>, \-g
+Debug Python's garbage collection on a SIGUSR1. If the argument is 
+empty 'garbage.log' will be used as logfile.
+.TP
+.B \-\-debug-imports
+All python imports are logged to stdout
+.TP
 .B \-\-interactive-debugger
 Run the app inside Python's built\-in debugger
 .TP
@@ -174,7 +184,7 @@
 that will allow the bug to be reproduced,
 and say which version of this tool you are using.
 .SH COPYRIGHT
-Copyright \(co 2000-2004 Free Software Foundation, Inc.
+Copyright \(co 2000-2005 Free Software Foundation, Inc.
 .LP
 gnue\-reports 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

Modified: trunk/gnue-reports/po/de.po
===================================================================
--- trunk/gnue-reports/po/de.po 2005-07-14 09:44:35 UTC (rev 7731)
+++ trunk/gnue-reports/po/de.po 2005-07-14 10:00:52 UTC (rev 7732)
@@ -5,26 +5,26 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe-Reports 0.1\n"
-"POT-Creation-Date: 2004-11-27 14:46+CET\n"
+"POT-Creation-Date: 2005-07-14 11:53+CEST\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Reinhard M�ller <address@hidden>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=ISO-8859-15\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: adapters/filters/Char/char/CHParser.py:172
+#: adapters/filters/Char/char/CHParser.py:174
 msgid "Not aligned"
 msgstr "Nicht b�ndig"
 
-#: adapters/filters/Char/char/CHParser.py:173
+#: adapters/filters/Char/char/CHParser.py:175
 msgid "Left"
 msgstr "Links"
 
-#: adapters/filters/Char/char/CHParser.py:174
+#: adapters/filters/Char/char/CHParser.py:176
 msgid "Right"
 msgstr "Rechts"
 
-#: adapters/filters/Char/char/CHParser.py:175
+#: adapters/filters/Char/char/CHParser.py:177
 msgid "Centered"
 msgstr "Zentriert"
 
@@ -32,13 +32,13 @@
 msgid "Error occured loading font %s (%s)."
 msgstr "Fehler beim Laden der Schriftart %s (%s)."
 
-#: client/GRRun.py:64
+#: client/GRRun.py:65
 msgid ""
 "GNUe Reports is the primary reporting agent of the GNU Enterprise system."
 msgstr ""
 "GNUe Reports ist das prim�re Berichtswerkzeug des GNU Enterprise Systems."
 
-#: client/GRRun.py:73
+#: client/GRRun.py:74
 msgid ""
 "Where should the report be output to?  The value of this depends on the "
 "destination type (e.g., if sending to printer, then -d specifies the printer "
@@ -57,7 +57,7 @@
 "ACHTUNG: im Moment ist die Vorgabe f�r diese Option \"-\" - das kann sich in "
 "sp�teren Versionen von GNUe Reports �ndern!"
 
-#: client/GRRun.py:84
+#: client/GRRun.py:85 tools/ReportPostProcessor.py:67
 msgid ""
 "This specifies how the report should be output. The currently supported "
 "values for <type> are file [default], printer, email, and fax. Note that "
@@ -70,7 +70,7 @@
 "erfolgt �ber die Servermaschine, nicht die Clientmaschine.ACHTUNG: Derzeit "
 "sind nur file, printer und email implementiert!"
 
-#: client/GRRun.py:92
+#: client/GRRun.py:93 tools/ReportPostProcessor.py:75
 msgid ""
 "Options to pass to the destination process. Available options are specific "
 "to the type of destination. Example: '--destination-options \"-o nobanner\" '"
@@ -78,7 +78,7 @@
 "Optionen f�r den Zielprozess. M�gliche Optionen h�ngen von der Ausgabeart "
 "ab. Beispiel: '--destination-options \"-o nobanner\"'"
 
-#: client/GRRun.py:98
+#: client/GRRun.py:99
 msgid ""
 "Select the filter to be used to process report output.  <filt> is the name "
 "of the filtering process as defined on the Report Server machine. If not "
@@ -88,11 +88,11 @@
 "Name des Filterprozesses gem�� Report-Servermaschine. Falls nicht angegeben, "
 "wird der \"raw\"-Filter verwendet (d.h. es wird nicht gefiltert)."
 
-#: client/GRRun.py:104
+#: client/GRRun.py:105
 msgid "List the available [predefined] filters available to GNUe Reports"
 msgstr "Listet die verf�gbaren Filter auf"
 
-#: client/GRRun.py:108
+#: client/GRRun.py:109 tools/ReportPostProcessor.py:81
 msgid ""
 "Options to pass to the filter process. Available options are specific to the "
 "filter.  --list-filters will list available filters and their options.  "
@@ -102,11 +102,11 @@
 "Filter ab.  --list-filters listet die m�glichen Filter und deren Optionen "
 "auf. Beispiel: '--filter-options \"paper=letter margin=1,1,1,1\"'"
 
-#: client/GRRun.py:114
+#: client/GRRun.py:115
 msgid "Select the \"sort-option\" used to sort the report."
 msgstr "Sortierungsvariante"
 
-#: client/GRRun.py:117
+#: client/GRRun.py:118
 msgid ""
 "Run GNUe Reports in batch mode -- i.e., no login information or runtime "
 "parameters will be prompted.  If required parameters are not provided, then "
@@ -115,7 +115,7 @@
 "Batch-Modus, d.h. keine Login-Informationen oder Parameter werden abgefragt. "
 "Ben�tigte Parameter m�ssen �ber die Kommandozeile angegeben werden."
 
-#: client/GRRun.py:122
+#: client/GRRun.py:123
 msgid ""
 "Run GNUe Reports in quiet mode -- i.e., display no output. NOTE: if --debug-"
 "level is specified, then suppressed text will be output as debugging "
@@ -124,20 +124,20 @@
 "Ausgabe unterdr�cken. ACHTUNG: wenn --debug-level angegeben wird, wird der "
 "unterdr�ckte Text als Debug-Information mit Debug-Level 1 ausgegeben."
 
-#: client/GRRun.py:128
+#: client/GRRun.py:129
 msgid ""
 "Run GNUe Reports using a specific UI.  Possible UIs are text, wx, gtk2, "
 "win32, qt and curses."
 msgstr ""
 "User Interface. M�gliche Werte sind text, wx, gtk2, win32, qt und curses."
 
-#: client/GRRun.py:131
+#: client/GRRun.py:132
 msgid ""
 "Include structural comments in the XML output stream. Useful for debugging ."
 "grd files."
 msgstr "Kommentare in XML-Ausgabe einbeziehen (zur Fehlersuche)"
 
-#: client/GRRun.py:135
+#: client/GRRun.py:136
 msgid ""
 "Create a standalone, single-use server instance.  Use this option in a non-"
 "client/server environment or in a debugging/development environment. NOTE: "
@@ -146,58 +146,58 @@
 "GNUe-Reports direkt ohne Server starten. ACHTUNG: bis auf weiteres hat diese "
 "Option genau die gegenteilige Bedeutung."
 
-#: client/GRRun.py:140
+#: client/GRRun.py:141
 msgid ""
 "Do not output GNUe Report''s runtime XML markup information.  If specified, "
 "then the GRD's layout section will be processed and output as-is; i.e., "
 "without any additional information added by GNUe Reports."
 msgstr "Ausgabe der XML Markup-Information unterdr�cken"
 
-#: client/GRRunUI.py:38
+#: client/GRRunUI.py:39
 msgid "File"
 msgstr "Datei"
 
-#: client/GRRunUI.py:39
+#: client/GRRunUI.py:40
 msgid "Printer"
 msgstr "Drucker"
 
-#: client/GRRunUI.py:40
+#: client/GRRunUI.py:41
 msgid "E-Mail"
 msgstr "E-Mail"
 
-#: client/GRRunUI.py:110
+#: client/GRRunUI.py:114
 msgid "Report canceled"
 msgstr "Report abgebrochen"
 
-#: client/GRRunUI.py:237
+#: client/GRRunUI.py:241
 msgid "Parameters"
 msgstr "Parameter"
 
-#: client/GRRunUI.py:311
+#: client/GRRunUI.py:315
 msgid "Output filter"
 msgstr "Ausgabefilter"
 
-#: client/GRRunUI.py:323
+#: client/GRRunUI.py:327
 msgid "Destination type"
 msgstr "Ausgabeart"
 
-#: client/GRRunUI.py:335
+#: client/GRRunUI.py:339
 msgid "Destination"
 msgstr "Ausgabeziel"
 
-#: client/GRRunUI.py:357
+#: client/GRRunUI.py:361
 msgid "Raw XML"
 msgstr "Ungefiltertes XML"
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "%s output filter"
 msgstr "%s Ausgabefilter"
 
-#: client/GRRunUI.py:531
+#: client/GRRunUI.py:535
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: client/GRRunUI.py:531
+#: client/GRRunUI.py:535
 msgid "Ok"
 msgstr "Ok"
 
@@ -233,10 +233,39 @@
 msgid "Set the password for the used database."
 msgstr "Passwort f�r die Datenbank"
 
-#: server/GRServer.py:124
+#: server/GRServer.py:121
 msgid ""
 "\n"
 "... GNUe Reports server up and running ...\n"
 msgstr ""
 "\n"
 "... GNUe Reports Server gestartet ...\n"
+
+#: tools/ReportPostProcessor.py:49
+msgid ""
+"The GNUe Reports Post-Processor takes the XML output of gnue-reports and "
+"applies filters to generate formatted output."
+msgstr ""
+
+#: tools/ReportPostProcessor.py:59
+#, fuzzy
+msgid ""
+"Where should the report be output to?  The value of this depends on the "
+"destination type (e.g., if sending to printer, then -d specifies the printer "
+"name; if sending via email, then -d specifies the email address.) If <dest> "
+"is \"-\", then output is sent to stdout. "
+msgstr ""
+"Wohin soll der Report ausgegeben werden? Dieser Wert h�ngt von der "
+"Ausgabeart ab (z.B. wenn die Ausgabe auf den Drucker erfolgt, definiert -d "
+"den Druckernamen, bei der Ausgabe auf E-Mail definiert -d die E-Mail-"
+"Adresse). Wenn <dest> \"-\" ist, wird die Ausgabe auf Stdout geschickt - "
+"ACHTUNG: bei der Ausgabe auf Stdout sollte auch die Option -q verwendet "
+"werden, da sonst die normale Ausgabe des Programms untergemischt wird. "
+"ACHTUNG: im Moment ist die Vorgabe f�r diese Option \"-\" - das kann sich in "
+"sp�teren Versionen von GNUe Reports �ndern!"
+
+#: tools/ReportPostProcessor.py:160
+msgid ""
+"The file does not appear to be output from gnue-reports or is in an "
+"unsupported document type. (Perhaps gnue-reports was run with the -X option?)"
+msgstr ""

Modified: trunk/gnue-reports/po/fr.po
===================================================================
--- trunk/gnue-reports/po/fr.po 2005-07-14 09:44:35 UTC (rev 7731)
+++ trunk/gnue-reports/po/fr.po 2005-07-14 10:00:52 UTC (rev 7732)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2004-11-27 14:46+CET\n"
+"POT-Creation-Date: 2005-07-14 11:53+CEST\n"
 "PO-Revision-Date: 2004-04-13 12:03+0200\n"
 "Last-Translator: Laurent Savaete <address@hidden>\n"
 "Language-Team: Francais <address@hidden>\n"
@@ -14,19 +14,19 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Generated-By: pygettext.py 1.5\n"
 
-#: adapters/filters/Char/char/CHParser.py:172
+#: adapters/filters/Char/char/CHParser.py:174
 msgid "Not aligned"
 msgstr ""
 
-#: adapters/filters/Char/char/CHParser.py:173
+#: adapters/filters/Char/char/CHParser.py:175
 msgid "Left"
 msgstr ""
 
-#: adapters/filters/Char/char/CHParser.py:174
+#: adapters/filters/Char/char/CHParser.py:176
 msgid "Right"
 msgstr ""
 
-#: adapters/filters/Char/char/CHParser.py:175
+#: adapters/filters/Char/char/CHParser.py:177
 msgid "Centered"
 msgstr ""
 
@@ -34,12 +34,12 @@
 msgid "Error occured loading font %s (%s)."
 msgstr "Erreur lors du chargement de la police %s (%s)."
 
-#: client/GRRun.py:64
+#: client/GRRun.py:65
 msgid ""
 "GNUe Reports is the primary reporting agent of the GNU Enterprise system."
 msgstr ""
 
-#: client/GRRun.py:73
+#: client/GRRun.py:74
 msgid ""
 "Where should the report be output to?  The value of this depends on the "
 "destination type (e.g., if sending to printer, then -d specifies the printer "
@@ -50,7 +50,7 @@
 "Reports is formally released!"
 msgstr ""
 
-#: client/GRRun.py:84
+#: client/GRRun.py:85 tools/ReportPostProcessor.py:67
 msgid ""
 "This specifies how the report should be output. The currently supported "
 "values for <type> are file [default], printer, email, and fax. Note that "
@@ -59,119 +59,119 @@
 "NOTE: Only file, printer, and email are currently implemented!"
 msgstr ""
 
-#: client/GRRun.py:92
+#: client/GRRun.py:93 tools/ReportPostProcessor.py:75
 msgid ""
 "Options to pass to the destination process. Available options are specific "
 "to the type of destination. Example: '--destination-options \"-o nobanner\" '"
 msgstr ""
 
-#: client/GRRun.py:98
+#: client/GRRun.py:99
 msgid ""
 "Select the filter to be used to process report output.  <filt> is the name "
 "of the filtering process as defined on the Report Server machine. If not "
 "specified, the \"raw\" filter is used (i.e., no filtering takes place.)"
 msgstr ""
 
-#: client/GRRun.py:104
+#: client/GRRun.py:105
 msgid "List the available [predefined] filters available to GNUe Reports"
 msgstr ""
 
-#: client/GRRun.py:108
+#: client/GRRun.py:109 tools/ReportPostProcessor.py:81
 msgid ""
 "Options to pass to the filter process. Available options are specific to the "
 "filter.  --list-filters will list available filters and their options.  "
 "Example: '--filter-options \"paper=letter margin=1,1,1,1\" '"
 msgstr ""
 
-#: client/GRRun.py:114
+#: client/GRRun.py:115
 msgid "Select the \"sort-option\" used to sort the report."
 msgstr ""
 
-#: client/GRRun.py:117
+#: client/GRRun.py:118
 msgid ""
 "Run GNUe Reports in batch mode -- i.e., no login information or runtime "
 "parameters will be prompted.  If required parameters are not provided, then "
 "Reports will terminate with an error"
 msgstr ""
 
-#: client/GRRun.py:122
+#: client/GRRun.py:123
 msgid ""
 "Run GNUe Reports in quiet mode -- i.e., display no output. NOTE: if --debug-"
 "level is specified, then suppressed text will be output as debugging "
 "information (at debug level 1)"
 msgstr ""
 
-#: client/GRRun.py:128
+#: client/GRRun.py:129
 msgid ""
 "Run GNUe Reports using a specific UI.  Possible UIs are text, wx, gtk2, "
 "win32, qt and curses."
 msgstr ""
 
-#: client/GRRun.py:131
+#: client/GRRun.py:132
 msgid ""
 "Include structural comments in the XML output stream. Useful for debugging ."
 "grd files."
 msgstr ""
 
-#: client/GRRun.py:135
+#: client/GRRun.py:136
 msgid ""
 "Create a standalone, single-use server instance.  Use this option in a non-"
 "client/server environment or in a debugging/development environment. NOTE: "
 "Until the Reports Server is mature this flag has the opposite meaning"
 msgstr ""
 
-#: client/GRRun.py:140
+#: client/GRRun.py:141
 msgid ""
 "Do not output GNUe Report''s runtime XML markup information.  If specified, "
 "then the GRD's layout section will be processed and output as-is; i.e., "
 "without any additional information added by GNUe Reports."
 msgstr ""
 
-#: client/GRRunUI.py:38
+#: client/GRRunUI.py:39
 msgid "File"
 msgstr ""
 
-#: client/GRRunUI.py:39
+#: client/GRRunUI.py:40
 msgid "Printer"
 msgstr ""
 
-#: client/GRRunUI.py:40
+#: client/GRRunUI.py:41
 msgid "E-Mail"
 msgstr ""
 
-#: client/GRRunUI.py:110
+#: client/GRRunUI.py:114
 msgid "Report canceled"
 msgstr ""
 
-#: client/GRRunUI.py:237
+#: client/GRRunUI.py:241
 msgid "Parameters"
 msgstr ""
 
-#: client/GRRunUI.py:311
+#: client/GRRunUI.py:315
 msgid "Output filter"
 msgstr ""
 
-#: client/GRRunUI.py:323
+#: client/GRRunUI.py:327
 msgid "Destination type"
 msgstr ""
 
-#: client/GRRunUI.py:335
+#: client/GRRunUI.py:339
 msgid "Destination"
 msgstr ""
 
-#: client/GRRunUI.py:357
+#: client/GRRunUI.py:361
 msgid "Raw XML"
 msgstr ""
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "%s output filter"
 msgstr ""
 
-#: client/GRRunUI.py:531
+#: client/GRRunUI.py:535
 msgid "Cancel"
 msgstr ""
 
-#: client/GRRunUI.py:531
+#: client/GRRunUI.py:535
 msgid "Ok"
 msgstr ""
 
@@ -207,10 +207,30 @@
 msgid "Set the password for the used database."
 msgstr "D�finit le mot de passe pour la base de donn�es utilis�e."
 
-#: server/GRServer.py:124
+#: server/GRServer.py:121
 msgid ""
 "\n"
 "... GNUe Reports server up and running ...\n"
 msgstr ""
 "\n"
 "... serveur GNUe Reports pr�t ...\n"
+
+#: tools/ReportPostProcessor.py:49
+msgid ""
+"The GNUe Reports Post-Processor takes the XML output of gnue-reports and "
+"applies filters to generate formatted output."
+msgstr ""
+
+#: tools/ReportPostProcessor.py:59
+msgid ""
+"Where should the report be output to?  The value of this depends on the "
+"destination type (e.g., if sending to printer, then -d specifies the printer "
+"name; if sending via email, then -d specifies the email address.) If <dest> "
+"is \"-\", then output is sent to stdout. "
+msgstr ""
+
+#: tools/ReportPostProcessor.py:160
+msgid ""
+"The file does not appear to be output from gnue-reports or is in an "
+"unsupported document type. (Perhaps gnue-reports was run with the -X option?)"
+msgstr ""

Modified: trunk/gnue-reports/po/hu.po
===================================================================
--- trunk/gnue-reports/po/hu.po 2005-07-14 09:44:35 UTC (rev 7731)
+++ trunk/gnue-reports/po/hu.po 2005-07-14 10:00:52 UTC (rev 7732)
@@ -5,26 +5,26 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe Reports 0.1\n"
-"POT-Creation-Date: 2004-11-27 14:46+CET\n"
+"POT-Creation-Date: 2005-07-14 11:53+CEST\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Kmetyk� G�bor <address@hidden>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: adapters/filters/Char/char/CHParser.py:172
+#: adapters/filters/Char/char/CHParser.py:174
 msgid "Not aligned"
 msgstr "Igaz�t�s n�lk�l"
 
-#: adapters/filters/Char/char/CHParser.py:173
+#: adapters/filters/Char/char/CHParser.py:175
 msgid "Left"
 msgstr "Balra"
 
-#: adapters/filters/Char/char/CHParser.py:174
+#: adapters/filters/Char/char/CHParser.py:176
 msgid "Right"
 msgstr "Jobbra"
 
-#: adapters/filters/Char/char/CHParser.py:175
+#: adapters/filters/Char/char/CHParser.py:177
 msgid "Centered"
 msgstr "K�z�pre"
 
@@ -32,13 +32,13 @@
 msgid "Error occured loading font %s (%s)."
 msgstr "Hiba a(z) %s font bet�lt�se k�zben (%s)."
 
-#: client/GRRun.py:64
+#: client/GRRun.py:65
 msgid ""
 "GNUe Reports is the primary reporting agent of the GNU Enterprise system."
 msgstr ""
 "A GNUe Reports a GNU Enterprise rendszer els�dleges jelent�sk�sz�t� fel�lete."
 
-#: client/GRRun.py:73
+#: client/GRRun.py:74
 msgid ""
 "Where should the report be output to?  The value of this depends on the "
 "destination type (e.g., if sending to printer, then -d specifies the printer "
@@ -55,7 +55,7 @@
 "szemetet is kaphatunk a kimeneten. FIGYELEM: Jelenleg az alap�rtelmezett "
 "�rt�k \"-\" -- ez v�ltozhat a GNUe Reports hivatalos megjelen�sekor'"
 
-#: client/GRRun.py:84
+#: client/GRRun.py:85 tools/ReportPostProcessor.py:67
 msgid ""
 "This specifies how the report should be output. The currently supported "
 "values for <type> are file [default], printer, email, and fax. Note that "
@@ -69,7 +69,7 @@
 "kereszt�l t�rt�nik elk�ld�sre, nem a kliensen. FIGYELEM: Csak a file, "
 "printer �s email van jelenleg megval�s�tva'"
 
-#: client/GRRun.py:92
+#: client/GRRun.py:93 tools/ReportPostProcessor.py:75
 msgid ""
 "Options to pass to the destination process. Available options are specific "
 "to the type of destination. Example: '--destination-options \"-o nobanner\" '"
@@ -77,7 +77,7 @@
 "A c�l processznek �tadand� kapcsol�k. A haszn�lhat� kapcsol�k a c�l "
 "t�pus�t�l f�ggnek. P�lda: '--destination-options' \"-o nobanner\" -"
 
-#: client/GRRun.py:98
+#: client/GRRun.py:99
 msgid ""
 "Select the filter to be used to process report output.  <filt> is the name "
 "of the filtering process as defined on the Report Server machine. If not "
@@ -87,11 +87,11 @@
 "g�pen defini�lt sz�r� processz neve. Ha nincs megadva, a \"raw\" sz�r� ker�l "
 "felhaszn�l�sra (azaz nem t�rt�nik sz�r�s)."
 
-#: client/GRRun.py:104
+#: client/GRRun.py:105
 msgid "List the available [predefined] filters available to GNUe Reports"
 msgstr "Felsorolja a GNUe Reports-ban el�rhet� [el�re meghat�rozott] sz�r�ket."
 
-#: client/GRRun.py:108
+#: client/GRRun.py:109 tools/ReportPostProcessor.py:81
 msgid ""
 "Options to pass to the filter process. Available options are specific to the "
 "filter.  --list-filters will list available filters and their options.  "
@@ -101,11 +101,11 @@
 "f�ggnek.  --list-filters kilist�zza a haszn�lat� sz�r�ket �s kapcsol�ikat.  "
 "P�lda: '--filter-options \"paper=letter margin=1,1,1,1\" '"
 
-#: client/GRRun.py:114
+#: client/GRRun.py:115
 msgid "Select the \"sort-option\" used to sort the report."
 msgstr "Be�ll�tja a \"sort-option\" kapcsol�t a jelent�s rendez�s�hez."
 
-#: client/GRRun.py:117
+#: client/GRRun.py:118
 msgid ""
 "Run GNUe Reports in batch mode -- i.e., no login information or runtime "
 "parameters will be prompted.  If required parameters are not provided, then "
@@ -115,7 +115,7 @@
 "inform�ci�kat vagy fut�sidej� param�tereket. Ha a sz�ks�ges param�terek nem "
 "�llnak rendelkez�sre, a Reports hib�val meg�ll."
 
-#: client/GRRun.py:122
+#: client/GRRun.py:123
 msgid ""
 "Run GNUe Reports in quiet mode -- i.e., display no output. NOTE: if --debug-"
 "level is specified, then suppressed text will be output as debugging "
@@ -125,7 +125,7 @@
 "kimenetet. FIGYELEM: ha a --debug-level meg van adva, kev�s sz�veg "
 "megjelenik majd mint debug inform�ci� (debug level 1-n�l)"
 
-#: client/GRRun.py:128
+#: client/GRRun.py:129
 msgid ""
 "Run GNUe Reports using a specific UI.  Possible UIs are text, wx, gtk2, "
 "win32, qt and curses."
@@ -133,7 +133,7 @@
 "A GNUe Reports-ot bizonyos UI-val futtatja.  Haszn�lhat� UI-k: text, wx, "
 "gtk2, win32, qt �s curses."
 
-#: client/GRRun.py:131
+#: client/GRRun.py:132
 msgid ""
 "Include structural comments in the XML output stream. Useful for debugging ."
 "grd files."
@@ -141,7 +141,7 @@
 "Struktur�lis megjegyz�seket sz�r be az XML kimeneti folyamba. Hasznos a grd "
 "f�jlok hibakeres�s�hez."
 
-#: client/GRRun.py:135
+#: client/GRRun.py:136
 msgid ""
 "Create a standalone, single-use server instance.  Use this option in a non-"
 "client/server environment or in a debugging/development environment. NOTE: "
@@ -152,7 +152,7 @@
 "haszn�lhatjuk. FIGYELEM: Am�g a Reports Server nem t�k�letes, ennek a "
 "kapcsol�nakellent�tes a jelent�se."
 
-#: client/GRRun.py:140
+#: client/GRRun.py:141
 msgid ""
 "Do not output GNUe Report''s runtime XML markup information.  If specified, "
 "then the GRD's layout section will be processed and output as-is; i.e., "
@@ -163,51 +163,51 @@
 "ahogy van, azaz mindenf�le, a GNUe Reports �ltal hozz�adott inform�ci� "
 "n�lk�l."
 
-#: client/GRRunUI.py:38
+#: client/GRRunUI.py:39
 msgid "File"
 msgstr "F�jl"
 
-#: client/GRRunUI.py:39
+#: client/GRRunUI.py:40
 msgid "Printer"
 msgstr "Nyomtat�"
 
-#: client/GRRunUI.py:40
+#: client/GRRunUI.py:41
 msgid "E-Mail"
 msgstr "E-mail"
 
-#: client/GRRunUI.py:110
+#: client/GRRunUI.py:114
 msgid "Report canceled"
 msgstr "Jelent�s f�lbeszak�tva"
 
-#: client/GRRunUI.py:237
+#: client/GRRunUI.py:241
 msgid "Parameters"
 msgstr "Param�terek"
 
-#: client/GRRunUI.py:311
+#: client/GRRunUI.py:315
 msgid "Output filter"
 msgstr "Kimeneti sz�r�"
 
-#: client/GRRunUI.py:323
+#: client/GRRunUI.py:327
 msgid "Destination type"
 msgstr "C�l t�pus"
 
-#: client/GRRunUI.py:335
+#: client/GRRunUI.py:339
 msgid "Destination"
 msgstr "C�l"
 
-#: client/GRRunUI.py:357
+#: client/GRRunUI.py:361
 msgid "Raw XML"
 msgstr "Nyers XML"
 
-#: client/GRRunUI.py:361
+#: client/GRRunUI.py:365
 msgid "%s output filter"
 msgstr "%s kimeneti sz�r�"
 
-#: client/GRRunUI.py:531
+#: client/GRRunUI.py:535
 msgid "Cancel"
 msgstr "M�gse"
 
-#: client/GRRunUI.py:531
+#: client/GRRunUI.py:535
 msgid "Ok"
 msgstr "Ok"
 
@@ -244,10 +244,37 @@
 msgid "Set the password for the used database."
 msgstr "�ll�tsa be a megfelel� jelsz�t az adott adatb�zishoz."
 
-#: server/GRServer.py:124
+#: server/GRServer.py:121
 msgid ""
 "\n"
 "... GNUe Reports server up and running ...\n"
 msgstr ""
 "\n"
 "... GNUe Reports szerver rendben m�k�dik...\n"
+
+#: tools/ReportPostProcessor.py:49
+msgid ""
+"The GNUe Reports Post-Processor takes the XML output of gnue-reports and "
+"applies filters to generate formatted output."
+msgstr ""
+
+#: tools/ReportPostProcessor.py:59
+#, fuzzy
+msgid ""
+"Where should the report be output to?  The value of this depends on the "
+"destination type (e.g., if sending to printer, then -d specifies the printer "
+"name; if sending via email, then -d specifies the email address.) If <dest> "
+"is \"-\", then output is sent to stdout. "
+msgstr ""
+"Mi legyen a jelent�s kimenete? Ennek �rt�ke a c�l t�pus�t�l f�gg (pl. "
+"nyomtat�ra k�ld�s eset�n a -d a nyomtat� nev�t adja meg, email k�ld�sekor "
+"pedig az email c�met). Ha a <dest> \"-\", az stdout-ra ker�lt a kimenet -- "
+"FIGYELEM: stdout-ra k�ld�skor haszn�ljuk a -q [--quiet] opci�t is, k�l�nben "
+"szemetet is kaphatunk a kimeneten. FIGYELEM: Jelenleg az alap�rtelmezett "
+"�rt�k \"-\" -- ez v�ltozhat a GNUe Reports hivatalos megjelen�sekor'"
+
+#: tools/ReportPostProcessor.py:160
+msgid ""
+"The file does not appear to be output from gnue-reports or is in an "
+"unsupported document type. (Perhaps gnue-reports was run with the -X option?)"
+msgstr ""





reply via email to

[Prev in Thread] Current Thread [Next in Thread]