--- a/.installed.cfg Thu Oct 08 09:26:24 2015 +0200
+++ b/.installed.cfg Thu Oct 08 09:27:29 2015 +0200
@@ -81,3 +81,22 @@
location = /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/parts/test
recipe = zc.recipe.testrunner
script = /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/bin/test
+
+[buildout]
+installed_develop_eggs = /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/develop-eggs/pyams-file.egg-link
+ /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/develop-eggs/lingua.egg-link
+ /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/develop-eggs/pyams-i18n.egg-link
+ /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/develop-eggs/pyams-catalog.egg-link
+ /home/tflorac/Dropbox/src/PyAMS/pyams_i18n/develop-eggs/pyams-utils.egg-link
+
+[buildout]
+parts = i18n pyflakes test package
+
+[buildout]
+parts = pyflakes test package i18n
+
+[buildout]
+parts = test package i18n pyflakes
+
+[buildout]
+parts = package i18n pyflakes test
--- a/buildout.cfg Thu Oct 08 09:26:24 2015 +0200
+++ b/buildout.cfg Thu Oct 08 09:27:29 2015 +0200
@@ -66,4 +66,4 @@
eggs = pyams_i18n [test]
[versions]
-pyams_base = 0.1.1
+pyams_i18n = 0.1.2
--- a/docs/HISTORY.txt Thu Oct 08 09:26:24 2015 +0200
+++ b/docs/HISTORY.txt Thu Oct 08 09:27:29 2015 +0200
@@ -0,0 +1,15 @@
+History
+=======
+
+0.1.2
+-----
+ - updated I18n manager interface and added base I18nManager mixin class
+
+0.1.1
+-----
+ - make "languages" property optional
+
+0.1.0
+-----
+ - initial release
+
--- a/setup.py Thu Oct 08 09:26:24 2015 +0200
+++ b/setup.py Thu Oct 08 09:27:29 2015 +0200
@@ -25,7 +25,7 @@
README = os.path.join(DOCS, 'README.txt')
HISTORY = os.path.join(DOCS, 'HISTORY.txt')
-version = '0.1.1'
+version = '0.1.2'
long_description = open(README).read() + '\n\n' + open(HISTORY).read()
tests_require = []
--- a/src/pyams_i18n.egg-info/PKG-INFO Thu Oct 08 09:26:24 2015 +0200
+++ b/src/pyams_i18n.egg-info/PKG-INFO Thu Oct 08 09:27:29 2015 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: pyams-i18n
-Version: 0.1.1
+Version: 0.1.2
Summary: PyAMS internationalization interfaces and classes
Home-page: http://hg.ztfy.org/pyams/pyams_i18n
Author: Thierry Florac
@@ -8,6 +8,21 @@
License: ZPL
Description:
+ History
+ =======
+
+ 0.1.2
+ -----
+ - updated I18n manager interface and added base I18nManager mixin class
+
+ 0.1.1
+ -----
+ - make "languages" property optional
+
+ 0.1.0
+ -----
+ - initial release
+
Keywords: Pyramid PyAMS i18n
Platform: UNKNOWN
--- a/src/pyams_i18n.egg-info/SOURCES.txt Thu Oct 08 09:26:24 2015 +0200
+++ b/src/pyams_i18n.egg-info/SOURCES.txt Thu Oct 08 09:27:29 2015 +0200
@@ -4,6 +4,7 @@
docs/README.txt
src/pyams_i18n/__init__.py
src/pyams_i18n/attr.py
+src/pyams_i18n/content.py
src/pyams_i18n/expr.py
src/pyams_i18n/include.py
src/pyams_i18n/index.py
@@ -24,6 +25,7 @@
src/pyams_i18n/interfaces/__init__.py
src/pyams_i18n/interfaces/schema.py
src/pyams_i18n/interfaces/widget.py
+src/pyams_i18n/locales/pyams_i18n.mo
src/pyams_i18n/locales/pyams_i18n.pot
src/pyams_i18n/locales/fr/LC_MESSAGES/pyams_i18n.mo
src/pyams_i18n/locales/fr/LC_MESSAGES/pyams_i18n.po
Binary file src/pyams_i18n/locales/fr/LC_MESSAGES/pyams_i18n.mo has changed
--- a/src/pyams_i18n/locales/fr/LC_MESSAGES/pyams_i18n.po Thu Oct 08 09:26:24 2015 +0200
+++ b/src/pyams_i18n/locales/fr/LC_MESSAGES/pyams_i18n.po Thu Oct 08 09:27:29 2015 +0200
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 1.0\n"
-"POT-Creation-Date: 2015-07-01 10:06+0200\n"
+"POT-Creation-Date: 2015-10-05 16:31+0200\n"
"PO-Revision-Date: 2015-02-03 21:43+0100\n"
"Last-Translator: Thierry Florac <tflorac@ulthar.net>\n"
"Language-Team: French\n"
@@ -1544,15 +1544,15 @@
msgid "<unknown>"
msgstr "<inconnu>"
-#: src/pyams_i18n/zmi/language.py:45
-msgid "Languages..."
-msgstr "Langues..."
+#: src/pyams_i18n/zmi/language.py:49
+msgid "Languages"
+msgstr "Langues"
-#: src/pyams_i18n/zmi/language.py:56 src/pyams_i18n/interfaces/__init__.py:86
+#: src/pyams_i18n/zmi/language.py:60 src/pyams_i18n/interfaces/__init__.py:86
msgid "Content languages"
msgstr "Langues proposées"
-#: src/pyams_i18n/zmi/negotiator.py:40
+#: src/pyams_i18n/zmi/negotiator.py:41
msgid "Update languages negotiator properties"
msgstr "Mise à jour des propriétés du gestionnaire de langues"
--- a/src/pyams_i18n/locales/pyams_i18n.pot Thu Oct 08 09:26:24 2015 +0200
+++ b/src/pyams_i18n/locales/pyams_i18n.pot Thu Oct 08 09:27:29 2015 +0200
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 1.0\n"
-"POT-Creation-Date: 2015-07-01 10:06+0200\n"
+"POT-Creation-Date: 2015-10-05 16:31+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1544,16 +1544,16 @@
msgid "<unknown>"
msgstr ""
-#: ./src/pyams_i18n/zmi/language.py:45
-msgid "Languages..."
+#: ./src/pyams_i18n/zmi/language.py:49
+msgid "Languages"
msgstr ""
-#: ./src/pyams_i18n/zmi/language.py:56
+#: ./src/pyams_i18n/zmi/language.py:60
#: ./src/pyams_i18n/interfaces/__init__.py:86
msgid "Content languages"
msgstr ""
-#: ./src/pyams_i18n/zmi/negotiator.py:40
+#: ./src/pyams_i18n/zmi/negotiator.py:41
msgid "Update languages negotiator properties"
msgstr ""