commit-gnue
[Top][All Lists]
Advanced

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

[gnue] r9313 - in trunk/gnue-common: . doc doc/man etc po src


From: reinhard
Subject: [gnue] r9313 - in trunk/gnue-common: . doc doc/man etc po src
Date: Mon, 15 Jan 2007 08:31:22 -0600 (CST)

Author: reinhard
Date: 2007-01-15 08:31:08 -0600 (Mon, 15 Jan 2007)
New Revision: 9313

Modified:
   trunk/gnue-common/NEWS
   trunk/gnue-common/doc/gnue-schema.dtd
   trunk/gnue-common/doc/man/gnue-schema.1
   trunk/gnue-common/etc/sample.gnue.conf
   trunk/gnue-common/po/de.po
   trunk/gnue-common/po/es_ES.po
   trunk/gnue-common/po/es_MX.po
   trunk/gnue-common/po/fr.po
   trunk/gnue-common/po/hu.po
   trunk/gnue-common/po/it.po
   trunk/gnue-common/po/lt.po
   trunk/gnue-common/po/nl.po
   trunk/gnue-common/po/ro.po
   trunk/gnue-common/po/ru.po
   trunk/gnue-common/src/__init__.py
Log:
Released 0.6.6.

Modified: trunk/gnue-common/NEWS
===================================================================
--- trunk/gnue-common/NEWS      2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/NEWS      2007-01-15 14:31:08 UTC (rev 9313)
@@ -1,3 +1,13 @@
+New features/changes in version 0.6.6: (2007-01-15)
+* [datasources] Optionally use OIDs in Postgres again
+* [datasources] Fixed len(ResultSet) to return int instead of long
+* [datasources] Support for drivers that return the Decimal datatype
+* [events] Debug message for fired events
+* [events] Fixed dropping of events
+* Minor improvements to version number handling code
+* New module to handle conversion of data to GNUe's standard datatypes
+* Cleaned up list of available configuration parameters
+
 New features/changes in version 0.6.5: (2006-11-09)
 * [apps] Append debug files instead of overwriting them (issue120)
 * [apps] Changed timestamps in debug files to absolute time (issue121)

Modified: trunk/gnue-common/doc/gnue-schema.dtd
===================================================================
--- trunk/gnue-common/doc/gnue-schema.dtd       2007-01-15 14:10:04 UTC (rev 
9312)
+++ trunk/gnue-common/doc/gnue-schema.dtd       2007-01-15 14:31:08 UTC (rev 
9313)
@@ -1,4 +1,4 @@
-<!-- GNUe Schema DTD (Version 0.6.5) -->
+<!-- GNUe Schema DTD (Version 0.6.6) -->
 
 <!--
      Copyright 2001-2005 Free Software Foundation
@@ -208,5 +208,5 @@
 
 
 <!-- This DTD was created by gnuedtd
-     Updated: 2006-11-09 10:11:09   -->
+     Updated: 2007-01-15 15:29:26   -->
 

Modified: trunk/gnue-common/doc/man/gnue-schema.1
===================================================================
--- trunk/gnue-common/doc/man/gnue-schema.1     2007-01-15 14:10:04 UTC (rev 
9312)
+++ trunk/gnue-common/doc/man/gnue-schema.1     2007-01-15 14:31:08 UTC (rev 
9313)
@@ -1,4 +1,4 @@
-.TH READGSD 1 "09 November 2006" "readgsd"
+.TH READGSD 1 "15 January 2007" "readgsd"
 .SH NAME
 readgsd \- readgsd
 .SH SYNOPSIS
@@ -133,7 +133,7 @@
 that will allow the bug to be reproduced,
 and say which version of this tool you are using.
 .SH COPYRIGHT
-Copyright \(co 2000-2006 Free Software Foundation, Inc.
+Copyright \(co 2000-2007 Free Software Foundation, Inc.
 .LP
 readgsd 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-common/etc/sample.gnue.conf
===================================================================
--- trunk/gnue-common/etc/sample.gnue.conf      2007-01-15 14:10:04 UTC (rev 
9312)
+++ trunk/gnue-common/etc/sample.gnue.conf      2007-01-15 14:31:08 UTC (rev 
9313)
@@ -40,12 +40,8 @@
 # instead of encoding with &lt; etc.
 ;StoreTriggersAsCDATA = True
 
-# Use parameters in DBSIG2 database drivers. 1 = use parameters, 0 = do not 
-# use them (deprecated)
-;useParameters = 1
 
 
-
 ##############################################################################
 # Configuration Options for GNUe Forms Client                                #
 ##############################################################################
@@ -62,13 +58,6 @@
 #   win32
 ;DefaultUI = wx
 
-# Allow formulas to be entered into numeric fields?
-;AllowNumericFormulas = True
-
-# Remember last query entered. (If enabled, then the last values entered for 
-# a query can be retrieved by doing an Enter-Query twice).
-;RememberLastQuery = True
-
 # The default value stored in the database for True values (usual values are 
 # 1 or Y).
 ;checkboxTrue = Y
@@ -197,7 +186,7 @@
 # Normally, default font style and size is used, according to the active 
 # theme.
 # Set to true if wxWidgets or Win32 clients should use a fixed width font.
-;fixedWidthFont = True
+;fixedWidthFont = False
 
 # If fixedWidthFont is set to true, then this is the point size used for 
 # fonts.
@@ -225,21 +214,17 @@
 # The default icon set.
 ;IconSet = auto
 
-# The style of dropdown handler to use for the wx uidriver.
-# Valid options / examples:
-#   auto
-#   windows
-#   gtk1
-;dropdownMode = auto
-
 # Use asterisk (*) for wildcards in addition to percent (%)
 ;AsteriskWildcard = True
 
 # Change all non-ASCII-characters in a query into a "_"
 ;fake_ascii_query = False
 
+# Set path for include files for HTML UI driver for GNUe Forms
+;htmlui_include_path = Z:X:
 
 
+
 ##############################################################################
 # Configuration Options for GNUe Reports                                     #
 ##############################################################################
@@ -311,9 +296,6 @@
 # Directory to search for .gpd files.
 ;ProcessDir = navigator
 
-# Do not display the splashscreen.
-;disableSplash = True
-
 # Do not open separate window to display a GNUe Form.
 ;embedForms = True
 

Modified: trunk/gnue-common/po/de.po
===================================================================
--- trunk/gnue-common/po/de.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/de.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: GNUe-Common 0.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2006-08-22 21:09+0200\n"
 "Last-Translator: Johannes Vetter <address@hidden>\n"
 "Language-Team: \n"
@@ -434,7 +434,7 @@
 "Beim Versuch, einen ge�nderten Datensatz neu zu lesen wurde er nicht mehr "
 "gefunden"
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
@@ -442,16 +442,16 @@
 "Das Bedingungselement '%(element)s' sollte %(wanted)d Argumente haben, hat "
 "aber nur %(real)d"
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr "Das Feld '%(field)s' hat keinen Eintrag in der Referenztabelle"
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 "Keine Vereinheitlichung der Kombination '%(type1)s' und '%(type2)s' m�glich"
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -846,7 +846,8 @@
 "(table)s' nicht enthalten"
 
 #: datasources/readgsd.py:58
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+#, fuzzy
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "Die Tabelle '%(table)s' hat kein(e) Feld(er) '%(field)s'"
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/es_ES.po
===================================================================
--- trunk/gnue-common/po/es_ES.po       2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/es_ES.po       2007-01-15 14:31:08 UTC (rev 9313)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe-Common 0.5.5\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2004-06-09\n"
 "Last-Translator: J. Esteban <address@hidden>\n"
 "Language-Team: es_ES\n"
@@ -430,21 +430,21 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
 msgstr ""
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -835,7 +835,7 @@
 
 #: datasources/readgsd.py:58
 #, fuzzy
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "La tabla '%s' no tiene campo '%s'"
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/es_MX.po
===================================================================
--- trunk/gnue-common/po/es_MX.po       2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/es_MX.po       2007-01-15 14:31:08 UTC (rev 9313)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2002-07-05 13:48+0200\n"
 "Last-Translator: Enrique Sanchez <address@hidden>\n"
 "Language-Team: Espa~ol/Mexico\n"
@@ -411,21 +411,21 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
 msgstr ""
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -818,7 +818,7 @@
 msgstr ""
 
 #: datasources/readgsd.py:58
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr ""
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/fr.po
===================================================================
--- trunk/gnue-common/po/fr.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/fr.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2004-04-14 19:00+0200\n"
 "Last-Translator: Laurent Savaete <address@hidden>\n"
 "Language-Team: Francais <address@hidden>\n"
@@ -432,21 +432,21 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
 msgstr ""
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -837,7 +837,7 @@
 
 #: datasources/readgsd.py:58
 #, fuzzy
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "La table '%s' n'a pas de champ '%s'."
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/hu.po
===================================================================
--- trunk/gnue-common/po/hu.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/hu.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: GNUe-Common 0.5\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2006-08-24 01:04+0200\n"
 "Last-Translator: kilo <address@hidden>\n"
 "MIME-Version: 1.0\n"
@@ -422,7 +422,7 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr "A megv�ltozott rekord �jraolvas�sakor a rekord nem volt megtal�lhat�"
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
@@ -430,15 +430,15 @@
 "A '%(element)s' felt�telnek '%(wanted)d' argumentuma kellene legyen, de csak "
 "%(real)d' szerepel"
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr "A '%(field)s' mez�nek nincs bejegyz�se az adott keres�si t�bl�ban"
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr "Nincs unifik�ci�s szab�ly a '%(type1)s' �s '%(type2)s' kombn�ci�ra"
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -844,7 +844,8 @@
 "sor�b�l"
 
 #: datasources/readgsd.py:58
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+#, fuzzy
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "A(z) '%(table)s' t�bl�ban nincs '%(field)s' mez�."
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/it.po
===================================================================
--- trunk/gnue-common/po/it.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/it.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: GNUe-Common 0.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2005-03-26 17:42+0100\n"
 "Last-Translator: Edmondo Grigolato <address@hidden>\n"
 "Language-Team: Italian <address@hidden>\n"
@@ -447,7 +447,7 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
@@ -455,17 +455,17 @@
 "L'elemento condizionale '%(element)s' dovrebbe essere '%(wanted)d' "
 "argomenti, ma ne ha solo %(real)d'"
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 "Il campo '%(field)s' non ha corrispondenze nella tabella di lookup fornita"
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 "Nessuna regola di unificazione per la combinazione '%(type1)s' e '%(type2)s'"
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -852,7 +852,7 @@
 
 #: datasources/readgsd.py:58
 #, fuzzy
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "La tabella '%(table)s' non ha campi '%(field)s'."
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/lt.po
===================================================================
--- trunk/gnue-common/po/lt.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/lt.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2002-07-05 13:48+0200\n"
 "Last-Translator: Art�ras Kriukovas <address@hidden>\n"
 "Language-Team: Lithuania\n"
@@ -410,21 +410,21 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
 msgstr ""
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -817,7 +817,7 @@
 msgstr ""
 
 #: datasources/readgsd.py:58
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr ""
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/nl.po
===================================================================
--- trunk/gnue-common/po/nl.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/nl.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -10,7 +10,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: nl\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2005-09-27 18:47+0200\n"
 "Last-Translator: Michael Van Wesenbeeck <address@hidden>\n"
 "Language-Team:  <address@hidden>\n"
@@ -439,7 +439,7 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr "Record niet gevonden bij het heropvragen van een gewijzigde record"
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
@@ -447,15 +447,15 @@
 "Conditie-element '%(element)s' zou '%(wanted)d' argumenten moeten hebben, "
 "maar had enkel '%(real)d'"
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr "Het veld '%(field)s' komt niet voor in de opgegeven opzoek-tabel."
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr "Geen samenvoeg-regel voor de combinatie '%(type1)s' en '%(type2)s'"
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -834,7 +834,8 @@
 "Sleutel veld(en) '%(fields)s' vermist in rij '%(row)s' van tabel '%(table)s'"
 
 #: datasources/readgsd.py:58
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+#, fuzzy
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "Tabel '%(table)s' heeft geen veld(en) '%(field)s'."
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/ro.po
===================================================================
--- trunk/gnue-common/po/ro.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/ro.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: gnue-common\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: 2004-04-07 14:53+0200\n"
 "Last-Translator: Florin Boariu <address@hidden>\n"
 "Language-Team: Romanian\n"
@@ -434,21 +434,21 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
 msgstr ""
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -840,7 +840,7 @@
 
 #: datasources/readgsd.py:58
 #, fuzzy
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr "Tabela '%s' nu are campul '%s'."
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/po/ru.po
===================================================================
--- trunk/gnue-common/po/ru.po  2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/po/ru.po  2007-01-15 14:31:08 UTC (rev 9313)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: gnue-common\n"
-"POT-Creation-Date: 2006-11-09 10:11+CET\n"
+"POT-Creation-Date: 2007-01-15 15:29+CET\n"
 "PO-Revision-Date: $Date$\n"
 "Last-Translator: Dmitry Sorokin <address@hidden>\n"
 "Language-Team: Russian\n"
@@ -369,21 +369,21 @@
 msgid "Record not found on attempt to requery changed record"
 msgstr ""
 
-#: datasources/GConditions.py:70
+#: datasources/GConditions.py:72
 msgid ""
 "Conditionelement '%(element)s' was expected to have '%(wanted)d'arguments, "
 "but only has %(real)d'"
 msgstr ""
 
-#: datasources/GConditions.py:88
+#: datasources/GConditions.py:90
 msgid "The field '%(field)s' has no entry in the given lookup-table"
 msgstr ""
 
-#: datasources/GConditions.py:110
+#: datasources/GConditions.py:112
 msgid "No unification rule for combination '%(type1)s' and '%(type2)s'"
 msgstr ""
 
-#: datasources/GConditions.py:123
+#: datasources/GConditions.py:125
 msgid ""
 "Value '%(value1)s' of type '%(type1)s' cannot be converted into type '%"
 "(type2)s'"
@@ -742,7 +742,7 @@
 msgstr ""
 
 #: datasources/readgsd.py:58
-msgid "Table '%(table)s' has no field(s) '%(fields)s'"
+msgid "Table '%(table)s' has no field '%(fields)s'"
 msgstr ""
 
 #: datasources/readgsd.py:64

Modified: trunk/gnue-common/src/__init__.py
===================================================================
--- trunk/gnue-common/src/__init__.py   2007-01-15 14:10:04 UTC (rev 9312)
+++ trunk/gnue-common/src/__init__.py   2007-01-15 14:31:08 UTC (rev 9313)
@@ -37,7 +37,7 @@
 PACKAGE = "GNUe-Common"
 TITLE = "GNUe Common Library"
 
-version = version.Version(0, 6, 'final', 5, svn_revision)
+version = version.Version(0, 6, 'final', 6, svn_revision)
 
 VERSION = version.get_version()
 HEXVERSION = version.get_hexversion()





reply via email to

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