[tryton-debian-vcs] tryton-modules-dashboard branch debian updated. debian/3.6.0-1-4-g727c966

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Nov 11 11:24:16 UTC 2015


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-dashboard.git;a=commitdiff;h=debian/3.6.0-1-4-g727c966

commit 727c966cd73f9e6d1c8b56ea65839c46d30aafcd
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Nov 11 12:11:11 2015 +0100

    Merging upstream version 3.8.0.

diff --git a/CHANGELOG b/CHANGELOG
index fad8220..05d94d7 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.0 - 2015-11-02
+* Bug fixes (see mercurial logs for details)
+
 Version 3.6.0 - 2015-04-20
 * Bug fixes (see mercurial logs for details)
 * Add support for PyPy
diff --git a/PKG-INFO b/PKG-INFO
index d2952a7..9a8b5c4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_dashboard
-Version: 3.6.0
+Version: 3.8.0
 Summary: Tryton module for dashboard
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.6/
+Download-URL: http://downloads.tryton.org/3.8/
 Description: trytond_dashboard
         =================
         
@@ -58,6 +58,9 @@ Classifier: Natural Language :: Dutch
 Classifier: Natural Language :: English
 Classifier: Natural Language :: French
 Classifier: Natural Language :: German
+Classifier: Natural Language :: Hungarian
+Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Portuguese (Brazilian)
 Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
diff --git a/dashboard.py b/dashboard.py
index 973cd65..f380583 100644
--- a/dashboard.py
+++ b/dashboard.py
@@ -1,6 +1,7 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
 from sql import Null
+from sql.conditionals import Case
 
 from trytond.model import ModelView, ModelSQL, fields
 from trytond.transaction import Transaction
@@ -47,4 +48,4 @@ class DashboardAction(ModelSQL, ModelView):
     @staticmethod
     def order_sequence(tables):
         table, _ = tables[None]
-        return [table.sequence == Null, table.sequence]
+        return [Case((table.sequence == Null, 0), else_=1), table.sequence]
diff --git a/locale/es_EC.po b/locale/es_EC.po
index e07846f..85b8c33 100644
--- a/locale/es_EC.po
+++ b/locale/es_EC.po
@@ -40,23 +40,23 @@ msgstr "Modificado por usuario"
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr "Acciones del panel de control"
 
 msgctxt "field:res.user,dashboard_layout:"
 msgid "Dashboard Layout"
-msgstr "Organización del escritorio"
+msgstr "Organización del panel de control"
 
 msgctxt "model:dashboard.action,name:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr "Acción del panel de control"
 
 msgctxt "model:ir.action,name:act_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr "Panel de control"
 
 msgctxt "model:ir.ui.menu,name:menu_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr "Panel de Control"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
@@ -80,12 +80,12 @@ msgstr "De abajo a arriba"
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr "Acción del panel de control"
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr "Acciones del panel de control"
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr "Panel de control"
diff --git a/locale/es_EC.po b/locale/es_MX.po
similarity index 88%
copy from locale/es_EC.po
copy to locale/es_MX.po
index e07846f..820c4a3 100644
--- a/locale/es_EC.po
+++ b/locale/es_MX.po
@@ -8,11 +8,11 @@ msgstr "Acción"
 
 msgctxt "field:dashboard.action,create_date:"
 msgid "Create Date"
-msgstr "Fecha de creación"
+msgstr "Fecha creación"
 
 msgctxt "field:dashboard.action,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr "Usuario creación"
 
 msgctxt "field:dashboard.action,id:"
 msgid "ID"
@@ -32,11 +32,11 @@ msgstr "Usuario"
 
 msgctxt "field:dashboard.action,write_date:"
 msgid "Write Date"
-msgstr "Fecha de modificación"
+msgstr "Fecha modificación"
 
 msgctxt "field:dashboard.action,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr "Usuario modificación"
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
@@ -60,7 +60,7 @@ msgstr "Escritorio"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
-msgstr "Cuadrado"
+msgstr "Ajustado"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Bottom"
@@ -80,12 +80,12 @@ msgstr "De abajo a arriba"
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
diff --git a/locale/es_EC.po b/locale/hu_HU.po
similarity index 71%
copy from locale/es_EC.po
copy to locale/hu_HU.po
index e07846f..65a252d 100644
--- a/locale/es_EC.po
+++ b/locale/hu_HU.po
@@ -4,88 +4,88 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:dashboard.action,act_window:"
 msgid "Action"
-msgstr "Acción"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_date:"
 msgid "Create Date"
-msgstr "Fecha de creación"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,id:"
 msgid "ID"
-msgstr "ID"
+msgstr ""
 
 msgctxt "field:dashboard.action,rec_name:"
 msgid "Name"
-msgstr "Nombre"
+msgstr ""
 
 msgctxt "field:dashboard.action,sequence:"
 msgid "Sequence"
-msgstr "Secuencia"
+msgstr ""
 
 msgctxt "field:dashboard.action,user:"
 msgid "User"
-msgstr "Usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_date:"
 msgid "Write Date"
-msgstr "Fecha de modificación"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_layout:"
 msgid "Dashboard Layout"
-msgstr "Organización del escritorio"
+msgstr ""
 
 msgctxt "model:dashboard.action,name:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "model:ir.action,name:act_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "model:ir.ui.menu,name:menu_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
-msgstr "Cuadrado"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Bottom"
-msgstr "De arriba a abajo"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Left"
-msgstr "De derecha a izquierda"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Right"
-msgstr "De izquierda a derecha"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Top"
-msgstr "De abajo a arriba"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
diff --git a/locale/es_EC.po b/locale/it_IT.po
similarity index 71%
copy from locale/es_EC.po
copy to locale/it_IT.po
index e07846f..65a252d 100644
--- a/locale/es_EC.po
+++ b/locale/it_IT.po
@@ -4,88 +4,88 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:dashboard.action,act_window:"
 msgid "Action"
-msgstr "Acción"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_date:"
 msgid "Create Date"
-msgstr "Fecha de creación"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,id:"
 msgid "ID"
-msgstr "ID"
+msgstr ""
 
 msgctxt "field:dashboard.action,rec_name:"
 msgid "Name"
-msgstr "Nombre"
+msgstr ""
 
 msgctxt "field:dashboard.action,sequence:"
 msgid "Sequence"
-msgstr "Secuencia"
+msgstr ""
 
 msgctxt "field:dashboard.action,user:"
 msgid "User"
-msgstr "Usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_date:"
 msgid "Write Date"
-msgstr "Fecha de modificación"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_layout:"
 msgid "Dashboard Layout"
-msgstr "Organización del escritorio"
+msgstr ""
 
 msgctxt "model:dashboard.action,name:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "model:ir.action,name:act_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "model:ir.ui.menu,name:menu_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
-msgstr "Cuadrado"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Bottom"
-msgstr "De arriba a abajo"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Left"
-msgstr "De derecha a izquierda"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Right"
-msgstr "De izquierda a derecha"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Top"
-msgstr "De abajo a arriba"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
diff --git a/locale/es_EC.po b/locale/ja_JP.po
similarity index 71%
copy from locale/es_EC.po
copy to locale/ja_JP.po
index e07846f..65a252d 100644
--- a/locale/es_EC.po
+++ b/locale/ja_JP.po
@@ -4,88 +4,88 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:dashboard.action,act_window:"
 msgid "Action"
-msgstr "Acción"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_date:"
 msgid "Create Date"
-msgstr "Fecha de creación"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,id:"
 msgid "ID"
-msgstr "ID"
+msgstr ""
 
 msgctxt "field:dashboard.action,rec_name:"
 msgid "Name"
-msgstr "Nombre"
+msgstr ""
 
 msgctxt "field:dashboard.action,sequence:"
 msgid "Sequence"
-msgstr "Secuencia"
+msgstr ""
 
 msgctxt "field:dashboard.action,user:"
 msgid "User"
-msgstr "Usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_date:"
 msgid "Write Date"
-msgstr "Fecha de modificación"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_layout:"
 msgid "Dashboard Layout"
-msgstr "Organización del escritorio"
+msgstr ""
 
 msgctxt "model:dashboard.action,name:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "model:ir.action,name:act_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "model:ir.ui.menu,name:menu_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
-msgstr "Cuadrado"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Bottom"
-msgstr "De arriba a abajo"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Left"
-msgstr "De derecha a izquierda"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Right"
-msgstr "De izquierda a derecha"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Top"
-msgstr "De abajo a arriba"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
diff --git a/locale/es_EC.po b/locale/lt_LT.po
similarity index 71%
copy from locale/es_EC.po
copy to locale/lt_LT.po
index e07846f..65a252d 100644
--- a/locale/es_EC.po
+++ b/locale/lt_LT.po
@@ -4,88 +4,88 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:dashboard.action,act_window:"
 msgid "Action"
-msgstr "Acción"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_date:"
 msgid "Create Date"
-msgstr "Fecha de creación"
+msgstr ""
 
 msgctxt "field:dashboard.action,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,id:"
 msgid "ID"
-msgstr "ID"
+msgstr ""
 
 msgctxt "field:dashboard.action,rec_name:"
 msgid "Name"
-msgstr "Nombre"
+msgstr ""
 
 msgctxt "field:dashboard.action,sequence:"
 msgid "Sequence"
-msgstr "Secuencia"
+msgstr ""
 
 msgctxt "field:dashboard.action,user:"
 msgid "User"
-msgstr "Usuario"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_date:"
 msgid "Write Date"
-msgstr "Fecha de modificación"
+msgstr ""
 
 msgctxt "field:dashboard.action,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "field:res.user,dashboard_layout:"
 msgid "Dashboard Layout"
-msgstr "Organización del escritorio"
+msgstr ""
 
 msgctxt "model:dashboard.action,name:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "model:ir.action,name:act_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "model:ir.ui.menu,name:menu_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
-msgstr "Cuadrado"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Bottom"
-msgstr "De arriba a abajo"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Left"
-msgstr "De derecha a izquierda"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Right"
-msgstr "De izquierda a derecha"
+msgstr ""
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Top"
-msgstr "De abajo a arriba"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
diff --git a/locale/es_EC.po b/locale/pt_BR.po
similarity index 72%
copy from locale/es_EC.po
copy to locale/pt_BR.po
index e07846f..1fe58f2 100644
--- a/locale/es_EC.po
+++ b/locale/pt_BR.po
@@ -4,15 +4,15 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "field:dashboard.action,act_window:"
 msgid "Action"
-msgstr "Acción"
+msgstr "Ação"
 
 msgctxt "field:dashboard.action,create_date:"
 msgid "Create Date"
-msgstr "Fecha de creación"
+msgstr "Data de Criação"
 
 msgctxt "field:dashboard.action,create_uid:"
 msgid "Create User"
-msgstr "Creado por usuario"
+msgstr "Criado por"
 
 msgctxt "field:dashboard.action,id:"
 msgid "ID"
@@ -20,72 +20,72 @@ msgstr "ID"
 
 msgctxt "field:dashboard.action,rec_name:"
 msgid "Name"
-msgstr "Nombre"
+msgstr "Nome"
 
 msgctxt "field:dashboard.action,sequence:"
 msgid "Sequence"
-msgstr "Secuencia"
+msgstr "Sequência"
 
 msgctxt "field:dashboard.action,user:"
 msgid "User"
-msgstr "Usuario"
+msgstr "Usuário"
 
 msgctxt "field:dashboard.action,write_date:"
 msgid "Write Date"
-msgstr "Fecha de modificación"
+msgstr "Data de Edição"
 
 msgctxt "field:dashboard.action,write_uid:"
 msgid "Write User"
-msgstr "Modificado por usuario"
+msgstr "Editado por"
 
 msgctxt "field:res.user,dashboard_actions:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr "Ações do Painel"
 
 msgctxt "field:res.user,dashboard_layout:"
 msgid "Dashboard Layout"
-msgstr "Organización del escritorio"
+msgstr "Layout do Painel"
 
 msgctxt "model:dashboard.action,name:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr "Ação do Painel"
 
 msgctxt "model:ir.action,name:act_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr "Painel"
 
 msgctxt "model:ir.ui.menu,name:menu_dashboard"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr "Painel"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Square"
-msgstr "Cuadrado"
+msgstr "Quadrado"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Bottom"
-msgstr "De arriba a abajo"
+msgstr "Empilhar no Fundo"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Left"
-msgstr "De derecha a izquierda"
+msgstr "Esquerda da Pilha"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Right"
-msgstr "De izquierda a derecha"
+msgstr "Empilhar à Direita"
 
 msgctxt "selection:res.user,dashboard_layout:"
 msgid "Stack Top"
-msgstr "De abajo a arriba"
+msgstr "Empilhar no Topo"
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Action"
-msgstr "Acción del escritorio"
+msgstr ""
 
 msgctxt "view:dashboard.action:"
 msgid "Dashboard Actions"
-msgstr "Acciones del escritorio"
+msgstr ""
 
 msgctxt "view:res.user:"
 msgid "Dashboard"
-msgstr "Escritorio"
+msgstr ""
diff --git a/setup.py b/setup.py
index 725d8fb..afb4c3e 100644
--- a/setup.py
+++ b/setup.py
@@ -79,6 +79,9 @@ setup(name=name,
         'Natural Language :: English',
         'Natural Language :: French',
         'Natural Language :: German',
+        'Natural Language :: Hungarian',
+        'Natural Language :: Italian',
+        'Natural Language :: Portuguese (Brazilian)',
         'Natural Language :: Russian',
         'Natural Language :: Slovenian',
         'Natural Language :: Spanish',
diff --git a/tryton.cfg b/tryton.cfg
index 75a7c34..61fb8c9 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.6.0
+version=3.8.0
 depends:
     ir
     res
diff --git a/trytond_dashboard.egg-info/PKG-INFO b/trytond_dashboard.egg-info/PKG-INFO
index 200a576..22b68f3 100644
--- a/trytond_dashboard.egg-info/PKG-INFO
+++ b/trytond_dashboard.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-dashboard
-Version: 3.6.0
+Version: 3.8.0
 Summary: Tryton module for dashboard
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.6/
+Download-URL: http://downloads.tryton.org/3.8/
 Description: trytond_dashboard
         =================
         
@@ -58,6 +58,9 @@ Classifier: Natural Language :: Dutch
 Classifier: Natural Language :: English
 Classifier: Natural Language :: French
 Classifier: Natural Language :: German
+Classifier: Natural Language :: Hungarian
+Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Portuguese (Brazilian)
 Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Spanish
diff --git a/trytond_dashboard.egg-info/SOURCES.txt b/trytond_dashboard.egg-info/SOURCES.txt
index 2ef999f..7cf449c 100644
--- a/trytond_dashboard.egg-info/SOURCES.txt
+++ b/trytond_dashboard.egg-info/SOURCES.txt
@@ -25,8 +25,14 @@ tryton.cfg
 ./locale/es_CO.po
 ./locale/es_EC.po
 ./locale/es_ES.po
+./locale/es_MX.po
 ./locale/fr_FR.po
+./locale/hu_HU.po
+./locale/it_IT.po
+./locale/ja_JP.po
+./locale/lt_LT.po
 ./locale/nl_NL.po
+./locale/pt_BR.po
 ./locale/ru_RU.po
 ./locale/sl_SI.po
 ./tests/__init__.py
@@ -45,8 +51,14 @@ locale/es_AR.po
 locale/es_CO.po
 locale/es_EC.po
 locale/es_ES.po
+locale/es_MX.po
 locale/fr_FR.po
+locale/hu_HU.po
+locale/it_IT.po
+locale/ja_JP.po
+locale/lt_LT.po
 locale/nl_NL.po
+locale/pt_BR.po
 locale/ru_RU.po
 locale/sl_SI.po
 trytond_dashboard.egg-info/PKG-INFO
diff --git a/trytond_dashboard.egg-info/requires.txt b/trytond_dashboard.egg-info/requires.txt
index 877d8e7..2b189d8 100644
--- a/trytond_dashboard.egg-info/requires.txt
+++ b/trytond_dashboard.egg-info/requires.txt
@@ -1,3 +1,3 @@
 lxml
 python-sql >= 0.4
-trytond >= 3.6, < 3.7
\ No newline at end of file
+trytond >= 3.8, < 3.9
\ No newline at end of file
-- 
tryton-modules-dashboard



More information about the tryton-debian-vcs mailing list