[Zope-Checkins] CVS: Zope3/lib/python/Zope/I18n/tests - de-default.mo:1.2 de-default.po:1.2 en-default.mo:1.2 en-default.po:1.2 testIMessageCatalog.py:1.2

Stephan Richter srichter@cbu.edu
Thu, 13 Jun 2002 12:35:20 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/I18n/tests
In directory cvs.zope.org:/tmp/cvs-serv9162/lib/python/Zope/I18n/tests

Modified Files:
	de-default.mo de-default.po en-default.mo en-default.po 
	testIMessageCatalog.py 
Log Message:
Added Headers to the translation .po files and fixed a bug in the tests.


=== Zope3/lib/python/Zope/I18n/tests/de-default.mo 1.1 => 1.2 ===


=== Zope3/lib/python/Zope/I18n/tests/de-default.po 1.1 => 1.2 ===
+msgstr ""
+"Project-Id-Version: Zope 3\n"
+"PO-Revision-Date: 2002/06/13\n"
+"Last-Translator: Zope 3 contributors\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
 msgid "short_greeting"
 msgstr "Hallo!"
 


=== Zope3/lib/python/Zope/I18n/tests/en-default.mo 1.1 => 1.2 ===


=== Zope3/lib/python/Zope/I18n/tests/en-default.po 1.1 => 1.2 ===
+msgstr ""
+"Project-Id-Version: Zope 3\n"
+"PO-Revision-Date: 2002/06/13\n"
+"Last-Translator: Zope 3 contributors\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
 msgid "short_greeting"
 msgstr "Hello!"
 


=== Zope3/lib/python/Zope/I18n/tests/testIMessageCatalog.py 1.1 => 1.2 ===
         catalog = self._catalog    
         self.assertEqual(catalog.getMessage('short_greeting'), 'Hello!')
-        self.assertRaises(KeyError, catalog.getMessage, ('foo',))
+        self.assertRaises(KeyError, catalog.getMessage, 'foo')
         
 
     def testQueryMessage(self):