Hello community,

here is the log from the commit of package python-oslo.i18n for 
openSUSE:Factory checked in at 2014-09-28 19:54:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-oslo.i18n (Old)
 and      /work/SRC/openSUSE:Factory/.python-oslo.i18n.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-oslo.i18n"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-oslo.i18n/python-oslo.i18n.changes        
2014-09-06 17:02:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-oslo.i18n.new/python-oslo.i18n.changes   
2014-09-28 19:54:43.000000000 +0200
@@ -1,0 +2,16 @@
+Sun Sep 21 09:23:31 UTC 2014 - [email protected]
+
+- update to version 1.0.0:
+  * Add missing six dependency
+- Add Requires for python-Babel and python-six
+
+-------------------------------------------------------------------
+Fri Sep 12 07:32:53 UTC 2014 - [email protected]
+
+- update to 0.3.0:
+  * Imported Translations from Transifex
+  * Updated from global requirements
+  * Imported Translations from Transifex
+  * Document how to add import exceptions
+
+-------------------------------------------------------------------

Old:
----
  oslo.i18n-0.2.0.tar.gz

New:
----
  oslo.i18n-1.0.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-oslo.i18n.spec ++++++
--- /var/tmp/diff_new_pack.9uWuLy/_old  2014-09-28 19:54:44.000000000 +0200
+++ /var/tmp/diff_new_pack.9uWuLy/_new  2014-09-28 19:54:44.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python-oslo.i18n
-Version:        0.2.0
+Version:        1.0.0
 Release:        0
 Summary:        osloi18n library
 License:        Apache-2.0
@@ -27,6 +27,8 @@
 BuildRequires:  python-Babel
 BuildRequires:  python-pbr
 BuildRequires:  python-setuptools
+Requires:       python-Babel >= 1.3
+Requires:       python-six >= 1.7.0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}

++++++ oslo.i18n-0.2.0.tar.gz -> oslo.i18n-1.0.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/ChangeLog 
new/oslo.i18n-1.0.0/ChangeLog
--- old/oslo.i18n-0.2.0/ChangeLog       2014-08-18 22:41:19.000000000 +0200
+++ new/oslo.i18n-1.0.0/ChangeLog       2014-09-18 14:15:53.000000000 +0200
@@ -1,11 +1,25 @@
 CHANGES
 =======
 
+1.0.0
+-----
+
+* Add missing six dependency
+
+0.3.0
+-----
+
+* Imported Translations from Transifex
+* Updated from global requirements
+* Imported Translations from Transifex
+* Document how to add import exceptions
+
 0.2.0
 -----
 
 * Add a test fixture for translatable strings
 * Imported Translations from Transifex
+* Remove mention of Message objects from public docs
 * Add Changelog to the documentation
 
 0.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/PKG-INFO new/oslo.i18n-1.0.0/PKG-INFO
--- old/oslo.i18n-0.2.0/PKG-INFO        2014-08-18 22:41:19.000000000 +0200
+++ new/oslo.i18n-1.0.0/PKG-INFO        2014-09-18 14:15:53.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: oslo.i18n
-Version: 0.2.0
+Version: 1.0.0
 Summary: oslo.i18n library
 Home-page: http://launchpad.net/oslo
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/doc/source/usage.rst 
new/oslo.i18n-1.0.0/doc/source/usage.rst
--- old/oslo.i18n-0.2.0/doc/source/usage.rst    2014-08-18 22:40:34.000000000 
+0200
+++ new/oslo.i18n-1.0.0/doc/source/usage.rst    2014-09-18 14:15:21.000000000 
+0200
@@ -21,6 +21,8 @@
 
 ::
 
+    # app/i18n.py
+
        from oslo import i18n
 
     _translators = i18n.TranslatorFactory(domain='myapp')
@@ -62,6 +64,43 @@
    :func:`gettextutils.install` should be replaced with the
    application or library integration module described here.
 
+Handling hacking Objections to Imports
+======================================
+
+The OpenStack style guidelines prefer importing modules and accessing
+names from those modules after import, rather than importing the names
+directly. For example:
+
+::
+
+  # WRONG
+  from foo import bar
+
+  bar()
+
+  # RIGHT
+
+  import foo
+
+  foo.bar()
+
+The linting tool hacking_ will typically complain about importing
+names from within modules. It is acceptable to bypass this for the
+translation marker functions, because they must have specific names
+and their use pattern is dictated by the message catalog extraction
+tools rather than our style guidelines. To bypass the hacking check
+for imports from the integration module, add an import exception to
+``tox.ini``.
+
+For example::
+
+  # tox.ini
+  [hacking]
+  import_exceptions =
+    app.i18n
+
+.. _hacking: https://pypi.python.org/pypi/hacking
+
 .. _lazy-translation:
 
 Lazy Translation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/oslo/i18n/_gettextutils.py 
new/oslo.i18n-1.0.0/oslo/i18n/_gettextutils.py
--- old/oslo.i18n-0.2.0/oslo/i18n/_gettextutils.py      2014-08-18 
22:40:34.000000000 +0200
+++ new/oslo.i18n-1.0.0/oslo/i18n/_gettextutils.py      2014-09-18 
14:15:21.000000000 +0200
@@ -45,11 +45,6 @@
     NOVA_LOCALEDIR).
 
     :param domain: the translation domain
-    :param lazy: indicates whether or not to install the lazy _() function.
-                 The lazy _() introduces a way to do deferred translation
-                 of messages by installing a _ that builds Message objects,
-                 instead of strings, which can then be lazily translated into
-                 any available locale.
     """
     from six import moves
     tf = _factory.TranslatorFactory(domain)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/oslo/i18n/log.py 
new/oslo.i18n-1.0.0/oslo/i18n/log.py
--- old/oslo.i18n-0.2.0/oslo/i18n/log.py        2014-08-18 22:40:34.000000000 
+0200
+++ new/oslo.i18n-1.0.0/oslo/i18n/log.py        2014-09-18 14:15:21.000000000 
+0200
@@ -25,9 +25,15 @@
 class TranslationHandler(handlers.MemoryHandler):
     """Handler that translates records before logging them.
 
-    The TranslationHandler takes a locale and a target logging.Handler object
-    to forward LogRecord objects to after translating them. This handler
-    depends on Message objects being logged, instead of regular strings.
+    When lazy translation is enabled in the application (see
+    :func:`~oslo.i18n.enable_lazy`), the :class:`TranslationHandler`
+    uses its locale configuration setting to determine how to
+    translate LogRecord objects before forwarding them to the
+    logging.Handler.
+
+    When lazy translation is disabled, the message in the LogRecord is
+    converted to unicode without any changes and then forwarded to the
+    logging.Handler.
 
     The handler can be configured declaratively in the
     ``logging.conf`` as follows::
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-critical.po
 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-critical.po
--- 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-critical.po
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-critical.po
    2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# Andi Chandler <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-09-02 09:09+0000\n"
+"Last-Translator: Andi Chandler <[email protected]>\n"
+"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/";
+"osloi18n/language/en_GB/)\n"
+"Language: en_GB\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-error.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-error.po
--- 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-error.po   
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-error.po   
    2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# Andi Chandler <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-09-02 09:09+0000\n"
+"Last-Translator: Andi Chandler <[email protected]>\n"
+"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/";
+"osloi18n/language/en_GB/)\n"
+"Language: en_GB\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-info.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-info.po
--- 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-info.po    
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-info.po    
    2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# Andi Chandler <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-09-02 09:09+0000\n"
+"Last-Translator: Andi Chandler <[email protected]>\n"
+"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/";
+"osloi18n/language/en_GB/)\n"
+"Language: en_GB\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-warning.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-warning.po
--- 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-warning.po 
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-warning.po 
    2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# Andi Chandler <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-09-02 09:09+0000\n"
+"Last-Translator: Andi Chandler <[email protected]>\n"
+"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/";
+"osloi18n/language/en_GB/)\n"
+"Language: en_GB\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n.po
--- old/oslo.i18n-0.2.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n.po 
1970-01-01 01:00:00.000000000 +0100
+++ new/oslo.i18n-1.0.0/oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n.po 
2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,33 @@
+# English (United Kingdom) translations for oslo.i18n.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the oslo.i18n project.
+#
+# Translators:
+# Andi Chandler <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version:  oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-09-02 09:09+0000\n"
+"Last-Translator: Andi Chandler <[email protected]>\n"
+"Language-Team: English (United Kingdom) "
+"(http://www.transifex.com/projects/p/osloi18n/language/en_GB/)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+
+#: oslo/i18n/_message.py:153
+msgid "Message objects do not support addition."
+msgstr "Message objects do not support addition."
+
+#: oslo/i18n/_message.py:164
+msgid ""
+"Message objects do not support str() because they may contain non-ascii "
+"characters. Please use unicode() or translate() instead."
+msgstr ""
+"Message objects do not support str() because they may contain non-ascii "
+"characters. Please use unicode() or translate() instead."
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-critical.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-critical.po
--- 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-critical.po   
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-critical.po   
    2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# PierAlberto <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-08-24 11:22+0000\n"
+"Last-Translator: PierAlberto <[email protected]>\n"
+"Language-Team: Italian (http://www.transifex.com/projects/p/osloi18n/";
+"language/it/)\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-error.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-error.po
--- old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-error.po  
1970-01-01 01:00:00.000000000 +0100
+++ new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-error.po  
2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# PierAlberto <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-08-24 11:23+0000\n"
+"Last-Translator: PierAlberto <[email protected]>\n"
+"Language-Team: Italian (http://www.transifex.com/projects/p/osloi18n/";
+"language/it/)\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-info.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-info.po
--- old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-info.po   
1970-01-01 01:00:00.000000000 +0100
+++ new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-info.po   
2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# PierAlberto <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-08-24 11:23+0000\n"
+"Last-Translator: PierAlberto <[email protected]>\n"
+"Language-Team: Italian (http://www.transifex.com/projects/p/osloi18n/";
+"language/it/)\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-warning.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-warning.po
--- 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-warning.po    
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-warning.po    
    2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,21 @@
+# Translations template for heat.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the heat project.
+#
+# Translators:
+# PierAlberto <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version: oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-08-24 11:24+0000\n"
+"Last-Translator: PierAlberto <[email protected]>\n"
+"Language-Team: Italian (http://www.transifex.com/projects/p/osloi18n/";
+"language/it/)\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n.po
--- old/oslo.i18n-0.2.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n.po    
1970-01-01 01:00:00.000000000 +0100
+++ new/oslo.i18n-1.0.0/oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n.po    
2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,34 @@
+# Italian translations for oslo.i18n.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the oslo.i18n project.
+#
+# Translators:
+# PierAlberto <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version:  oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-09-07 06:01+0000\n"
+"PO-Revision-Date: 2014-08-24 11:27+0000\n"
+"Last-Translator: PierAlberto <[email protected]>\n"
+"Language-Team: Italian "
+"(http://www.transifex.com/projects/p/osloi18n/language/it/)\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+
+#: oslo/i18n/_message.py:153
+msgid "Message objects do not support addition."
+msgstr "I messaggi oggetti non supportano aggiunte."
+
+#: oslo/i18n/_message.py:164
+msgid ""
+"Message objects do not support str() because they may contain non-ascii "
+"characters. Please use unicode() or translate() instead."
+msgstr ""
+"I messaggi oggetti non supportano str() perché possono contenere "
+"caratteri non-ascii. Si prega di utilizzare unicode() o translate() "
+"invece."
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.i18n-0.2.0/oslo.i18n/locale/pl_PL/LC_MESSAGES/oslo.i18n.po 
new/oslo.i18n-1.0.0/oslo.i18n/locale/pl_PL/LC_MESSAGES/oslo.i18n.po
--- old/oslo.i18n-0.2.0/oslo.i18n/locale/pl_PL/LC_MESSAGES/oslo.i18n.po 
1970-01-01 01:00:00.000000000 +0100
+++ new/oslo.i18n-1.0.0/oslo.i18n/locale/pl_PL/LC_MESSAGES/oslo.i18n.po 
2014-09-18 14:15:21.000000000 +0200
@@ -0,0 +1,35 @@
+# Polish (Poland) translations for oslo.i18n.
+# Copyright (C) 2014 ORGANIZATION
+# This file is distributed under the same license as the oslo.i18n project.
+#
+# Translators:
+# Łukasz Jernaś <[email protected]>, 2014
+msgid ""
+msgstr ""
+"Project-Id-Version:  oslo.i18n\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2014-08-24 06:01+0000\n"
+"PO-Revision-Date: 2014-08-21 11:28+0000\n"
+"Last-Translator: Łukasz Jernaś <[email protected]>\n"
+"Language-Team: Polish (Poland) "
+"(http://www.transifex.com/projects/p/osloi18n/language/pl_PL/)\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && "
+"(n%100<10 || n%100>=20) ? 1 : 2)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 1.3\n"
+
+#: oslo/i18n/_message.py:153
+msgid "Message objects do not support addition."
+msgstr "Obiekty Message nie wspierają dodawania."
+
+#: oslo/i18n/_message.py:164
+msgid ""
+"Message objects do not support str() because they may contain non-ascii "
+"characters. Please use unicode() or translate() instead."
+msgstr ""
+"Obiekty Message nie wspierają metody str(), ponieważ mogą zawierać znaki "
+"spoza zestawu ASCII. Nalezy wykorzystywać metodę unicode() lub "
+"translate()."
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/oslo.i18n.egg-info/PKG-INFO 
new/oslo.i18n-1.0.0/oslo.i18n.egg-info/PKG-INFO
--- old/oslo.i18n-0.2.0/oslo.i18n.egg-info/PKG-INFO     2014-08-18 
22:41:19.000000000 +0200
+++ new/oslo.i18n-1.0.0/oslo.i18n.egg-info/PKG-INFO     2014-09-18 
14:15:53.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: oslo.i18n
-Version: 0.2.0
+Version: 1.0.0
 Summary: oslo.i18n library
 Home-page: http://launchpad.net/oslo
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/oslo.i18n.egg-info/SOURCES.txt 
new/oslo.i18n-1.0.0/oslo.i18n.egg-info/SOURCES.txt
--- old/oslo.i18n-0.2.0/oslo.i18n.egg-info/SOURCES.txt  2014-08-18 
22:41:19.000000000 +0200
+++ new/oslo.i18n-1.0.0/oslo.i18n.egg-info/SOURCES.txt  2014-09-18 
14:15:53.000000000 +0200
@@ -37,6 +37,17 @@
 oslo.i18n/locale/oslo.i18n-log-warning.pot
 oslo.i18n/locale/oslo.i18n.pot
 oslo.i18n/locale/de/LC_MESSAGES/oslo.i18n.po
+oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-critical.po
+oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-error.po
+oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-info.po
+oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n-log-warning.po
+oslo.i18n/locale/en_GB/LC_MESSAGES/oslo.i18n.po
+oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-critical.po
+oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-error.po
+oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-info.po
+oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n-log-warning.po
+oslo.i18n/locale/it/LC_MESSAGES/oslo.i18n.po
+oslo.i18n/locale/pl_PL/LC_MESSAGES/oslo.i18n.po
 oslo/i18n/__init__.py
 oslo/i18n/_factory.py
 oslo/i18n/_gettextutils.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/oslo.i18n.egg-info/requires.txt 
new/oslo.i18n-1.0.0/oslo.i18n.egg-info/requires.txt
--- old/oslo.i18n-0.2.0/oslo.i18n.egg-info/requires.txt 2014-08-18 
22:41:19.000000000 +0200
+++ new/oslo.i18n-1.0.0/oslo.i18n.egg-info/requires.txt 2014-09-18 
14:15:53.000000000 +0200
@@ -1 +1,2 @@
-Babel>=1.3
\ No newline at end of file
+Babel>=1.3
+six>=1.7.0
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/requirements.txt 
new/oslo.i18n-1.0.0/requirements.txt
--- old/oslo.i18n-0.2.0/requirements.txt        2014-08-18 22:40:34.000000000 
+0200
+++ new/oslo.i18n-1.0.0/requirements.txt        2014-09-18 14:15:21.000000000 
+0200
@@ -1 +1,2 @@
 Babel>=1.3
+six>=1.7.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.i18n-0.2.0/test-requirements.txt 
new/oslo.i18n-1.0.0/test-requirements.txt
--- old/oslo.i18n-0.2.0/test-requirements.txt   2014-08-18 22:40:34.000000000 
+0200
+++ new/oslo.i18n-1.0.0/test-requirements.txt   2014-09-18 14:15:21.000000000 
+0200
@@ -1,6 +1,6 @@
 hacking>=0.9.2,<0.10
 
 sphinx>=1.1.2,!=1.2.0,<1.3
-oslosphinx
+oslosphinx>=2.2.0.0a2
 
-oslotest
+oslotest>=1.1.0.0a1

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to