Rodney Enciso Arias 8 gadi atpakaļ
revīzija
bdf23b0c9d
97 mainītis faili ar 23270 papildinājumiem un 0 dzēšanām
  1. 77 0
      README.rst
  2. 7 0
      __init__.py
  3. BIN
      __init__.pyc
  4. 38 0
      __openerp__.py
  5. 25 0
      demo/res_groups.yml
  6. 40 0
      demo/tile_tile.yml
  7. 241 0
      i18n/am.po
  8. 344 0
      i18n/ar.po
  9. 330 0
      i18n/bg.po
  10. 330 0
      i18n/bs.po
  11. 330 0
      i18n/ca.po
  12. 330 0
      i18n/cs.po
  13. 330 0
      i18n/da.po
  14. 342 0
      i18n/de.po
  15. 241 0
      i18n/el_GR.po
  16. 330 0
      i18n/en_GB.po
  17. 347 0
      i18n/es.po
  18. 330 0
      i18n/es_AR.po
  19. 330 0
      i18n/es_CL.po
  20. 330 0
      i18n/es_CO.po
  21. 330 0
      i18n/es_CR.po
  22. 330 0
      i18n/es_DO.po
  23. 330 0
      i18n/es_EC.po
  24. 330 0
      i18n/es_ES.po
  25. 330 0
      i18n/es_MX.po
  26. 330 0
      i18n/es_PE.po
  27. 330 0
      i18n/es_PY.po
  28. 330 0
      i18n/es_VE.po
  29. 330 0
      i18n/et.po
  30. 331 0
      i18n/eu.po
  31. 330 0
      i18n/fa.po
  32. 342 0
      i18n/fi.po
  33. 345 0
      i18n/fr.po
  34. 330 0
      i18n/fr_CA.po
  35. 330 0
      i18n/fr_CH.po
  36. 330 0
      i18n/gl.po
  37. 330 0
      i18n/gl_ES.po
  38. 330 0
      i18n/he.po
  39. 330 0
      i18n/hr.po
  40. 330 0
      i18n/hr_HR.po
  41. 330 0
      i18n/hu.po
  42. 330 0
      i18n/id.po
  43. 340 0
      i18n/it.po
  44. 330 0
      i18n/ja.po
  45. 330 0
      i18n/ko.po
  46. 330 0
      i18n/lt.po
  47. 330 0
      i18n/lt_LT.po
  48. 330 0
      i18n/lv.po
  49. 330 0
      i18n/mk.po
  50. 330 0
      i18n/mn.po
  51. 330 0
      i18n/nb.po
  52. 330 0
      i18n/nb_NO.po
  53. 353 0
      i18n/nl.po
  54. 330 0
      i18n/nl_BE.po
  55. 330 0
      i18n/pl.po
  56. 330 0
      i18n/pt.po
  57. 348 0
      i18n/pt_BR.po
  58. 330 0
      i18n/pt_PT.po
  59. 330 0
      i18n/ro.po
  60. 330 0
      i18n/ru.po
  61. 330 0
      i18n/sk.po
  62. 344 0
      i18n/sl.po
  63. 330 0
      i18n/sr.po
  64. 330 0
      i18n/sr@latin.po
  65. 330 0
      i18n/sv.po
  66. 330 0
      i18n/th.po
  67. 339 0
      i18n/tr.po
  68. 330 0
      i18n/tr_TR.po
  69. 330 0
      i18n/uk.po
  70. 330 0
      i18n/vi.po
  71. 330 0
      i18n/vi_VN.po
  72. 232 0
      i18n/web_dashboard_tile.pot
  73. 330 0
      i18n/zh_CN.po
  74. 330 0
      i18n/zh_TW.po
  75. 13 0
      migrations/8.0.3.0/post-migration.py
  76. 26 0
      migrations/8.0.4.0/post-migration.py
  77. 7 0
      models/__init__.py
  78. BIN
      models/__init__.pyc
  79. 281 0
      models/tile_tile.py
  80. BIN
      models/tile_tile.pyc
  81. 2 0
      security/ir.model.access.csv
  82. 22 0
      security/rules.xml
  83. BIN
      static/description/icon.png
  84. 59 0
      static/src/css/tile.css
  85. BIN
      static/src/img/avg.png
  86. BIN
      static/src/img/max.png
  87. BIN
      static/src/img/median.png
  88. BIN
      static/src/img/min.png
  89. BIN
      static/src/img/screenshot_action_click.png
  90. BIN
      static/src/img/screenshot_dashboard.png
  91. BIN
      static/src/img/sum.png
  92. 100 0
      static/src/js/custom_js.js
  93. 12 0
      static/src/xml/custom_xml.xml
  94. 6 0
      tests/__init__.py
  95. 52 0
      tests/test_tile.py
  96. 33 0
      views/templates.xml
  97. 161 0
      views/tile.xml

+ 77 - 0
README.rst

@@ -0,0 +1,77 @@
+Dashboard Tiles
+===============
+
+Adds a dashboard where you can configure tiles from any view and add them as short cut.
+
+By default, the tile displays items count of a given model restricted to a given domain.
+
+Optionally, the tile can display the result of a function on a field.
+
+- Function is one of `sum`, `avg`, `min`, `max` or `median`.
+- Field must be integer or float.
+
+Tile can be:
+
+- Displayed only for a user.
+- Global for all users.
+- Restricted to some groups.
+
+*Note: The tile will be hidden if the current user doesn't have access to the given model.*
+
+Usage
+=====
+
+* Dashboad sample, displaying Sale Orders to invoice:
+
+.. image:: ./static/src/img/screenshot_dashboard.png
+
+* Tree view displayed when user click on the tile:
+
+.. image:: ./static/src/img/screenshot_action_click.png
+
+Known issues
+============
+* Can not edit tile from dashboard (color, sequence, function, ...).
+* Original context is ignored.
+* Original domain and filter are not restored.
+* To preserve a relative date domain, you have to manually edit the tile's domain from `Configuration > User Interface > Dashboard Tile`. You can use the same variables available in filters (`uid`, `context_today()`, `current_date`, `time`, `datetime`, `relativedelta`).
+
+Roadmap
+=======
+* Add icons.
+* Support client side action (like inbox).
+* Restore original Domain + Filter when an action is set.
+* Posibility to hide the tile based on a field expression.
+* Posibility to set the background color based on a field expression.
+
+Bug Tracker
+===========
+
+Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
+`here <https://github.com/OCA/web/issues/new?body=module:%20web_dashboard_tile%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+
+
+Credits
+=======
+
+Contributors
+------------
+
+* Markus Schneider <markus.schneider at initos.com>
+* Sylvain Le Gal (https://twitter.com/legalsylvain)
+* Iván Todorovich <ivan.todorovich@gmail.com>
+
+Maintainer
+----------
+
+.. image:: http://odoo-community.org/logo.png
+    :alt: Odoo Community Association
+    :target: http://odoo-community.org
+
+This module is maintained by the OCA.
+
+OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
+
+To contribute to this module, please visit http://odoo-community.org.

+ 7 - 0
__init__.py

@@ -0,0 +1,7 @@
+# -*- coding: utf-8 -*-
+# © 2010-2013 OpenERP s.a. (<http://openerp.com>).
+# © 2014 initOS GmbH & Co. KG (<http://www.initos.com>).
+# © 2015-Today GRAP
+# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
+
+from . import models

BIN
__init__.pyc


+ 38 - 0
__openerp__.py

@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+# © 2010-2013 OpenERP s.a. (<http://openerp.com>).
+# © 2014 initOS GmbH & Co. KG (<http://www.initos.com>).
+# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
+{
+    "name": "Dashboard Tile",
+    "summary": "Add Tiles to Dashboard",
+    "version": "8.0.4.0.0",
+    "depends": [
+        'web',
+        'board',
+        'mail',
+        'web_widget_color',
+    ],
+    'author': 'initOS GmbH & Co. KG, '
+              'GRAP, '
+              'Odoo Community Association (OCA)',
+    "category": "web",
+    'license': 'AGPL-3',
+    'contributors': [
+        'initOS GmbH & Co. KG',
+        'GRAP',
+        'Iván Todorovich <ivan.todorovich@gmail.com>'
+    ],
+    'data': [
+        'views/tile.xml',
+        'views/templates.xml',
+        'security/ir.model.access.csv',
+        'security/rules.xml',
+    ],
+    'demo': [
+        'demo/res_groups.yml',
+        'demo/tile_tile.yml',
+    ],
+    'qweb': [
+        'static/src/xml/custom_xml.xml',
+    ],
+}

+ 25 - 0
demo/res_groups.yml

@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2015-Today GRAP
+#    @author Sylvain LE GAL (https://twitter.com/legalsylvain)
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU Affero General Public License for more details.
+#
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+- !record {model: res.groups, id: base.group_no_one}:
+    users:
+        - base.user_root

+ 40 - 0
demo/tile_tile.yml

@@ -0,0 +1,40 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2015-Today GRAP
+#    @author Sylvain LE GAL (https://twitter.com/legalsylvain)
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU Affero General Public License for more details.
+#
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+- !record {model: tile.tile, id: installed_modules}:
+    name: Installed Modules
+    model_id: base.model_ir_module_module
+    domain: [['state', 'in', ['installed', 'to upgrade', 'to remove']]]
+    action_id: base.open_module_tree
+
+- !record {model: tile.tile, id: installed_OCA_modules}:
+    name: Installed OCA Modules
+    model_id: base.model_ir_module_module
+    domain: [['state', 'in', ['installed', 'to upgrade', 'to remove']], ['author', 'ilike', 'Odoo Community Association (OCA)']]
+    action_id: base.open_module_tree
+
+- !record {model: tile.tile, id: all_currency_with_rate}:
+    name: Currencies (Max Rate)
+    model_id: base.model_res_currency
+    domain: []
+    secondary_function: max
+    secondary_field_id: base.field_res_currency_rate

+ 241 - 0
i18n/am.po

@@ -0,0 +1,241 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-09-17 12:06+0000\n"
+"PO-Revision-Date: 2016-09-09 12:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/am/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: am\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,computed_value:0
+msgid "Computed value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,count:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,field_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Optional Field Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:142
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:150
+#, python-format
+msgid "Please set both: 'Field' and 'Function'."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:123
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""

+ 344 - 0
i18n/ar.po

@@ -0,0 +1,344 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
+# Antonio Trueba, 2016
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
+# Giacomo <giacomo.spettoli@gmail.com>, 2015
+# Hotellook, 2014
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
+# Miku Laitinen <miku.laitinen@gmail.com>, 2015
+# Paolo Valier, 2016
+# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# SaFi J. <safi2266@gmail.com>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-10 07:09+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "الإجراء"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "المعدل"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "لون الخلفية"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "إنشاء"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "تم الإنشاء بواسطة"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "تم الإنشاء في"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "لوحة المعلومات"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "العرض"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "اسم العرض"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "النطاق"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "الخطأ"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "الحقل"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "اسم المرشح مطلوب."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "لون الخط"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "الوظيفة"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "المعرف"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "آخر تحديث بواسطة"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "آخر تحديث في"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "الحد الاعلى"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "القيمة العليا الى '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "متوسط"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "القيمة المتوسطة الى '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "الحد الادنى"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "القيمة الادنى الى '%s'"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "النموذج"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "الاسم"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "التسلسل"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "نجاح"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "المجموع"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "المعلومات التقنية"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "القيمة الاجمالية  الى '%s'"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "المستخدم"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/bg.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-25 14:57+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/bg/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Активен"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Създай"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Създадено от"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Създадено на"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Име за Показване"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Последно обновено на"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Последно обновено от"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Последно обновено на"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Име"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Последователност"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/bs.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:23+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bs\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Kreirano"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Prikaži naziv"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Zadnje mijenjano"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Zadnji ažurirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Zadnje ažurirano"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Ime"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sekvenca"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Korisnik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/ca.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-14 09:35+0000\n"
+"PO-Revision-Date: 2017-01-17 19:17+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Actiu"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creat per"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creat el"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Veure el nom"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Error"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Camp"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Darrera modificació el"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Darrera Actualització per"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Darrera Actualització el"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Seqüència"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuari"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/cs.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/cs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: cs\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Vytvořil(a)"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Vytvořeno"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Zobrazovaný název"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Naposled upraveno"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Naposled upraveno"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Naposled upraveno"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Název"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Číselná řada"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Uživatel"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/da.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktiv"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Oprettet af"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Oprettet den"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Vist navn"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "Id"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Sidst opdateret af"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Sidst opdateret den"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Navn"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Rækkefølge"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 342 - 0
i18n/de.po

@@ -0,0 +1,342 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Antonio Trueba, 2016
+# danimaribeiro <danimaribeiro@gmail.com>, 2016
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2014
+# Hotellook, 2014
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
+# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
+# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
+# Miku Laitinen <miku.laitinen@gmail.com>, 2015
+# Paolo Valier, 2016
+# Rudolf Schnapka <rs@techno-flex.de>, 2016
+# SaFi J. <safi2266@gmail.com>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-10 07:09+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Aktion"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktiv"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Durchschnitt"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Hintergrundfarbe"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Anlegen"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Angelegt durch"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Angelegt am"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Pinwand"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Pinwand-Kachel"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Pinwand-Kacheln"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Anzeige"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Domäne"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Fehler"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Feld"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Filterbezeichnung ist erforderlich."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Schriftfarbe"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Funktion"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Zuletzt aktualisiert durch"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Zuletzt aktualisiert am"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Maximum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "Maximalwert von '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "Median"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "Medianwert von '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "Minimalwert von '%s'"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modell"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Bezeichnung"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Reihenfolge"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Erfolg"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Summe"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Technische Information"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "Kachel wurde angelegt"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Kachel:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "Gesamtwert von '%s'"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Benutzer"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Wert"

+ 241 - 0
i18n/el_GR.po

@@ -0,0 +1,241 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-09-17 12:06+0000\n"
+"PO-Revision-Date: 2016-09-09 12:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/language/el_GR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el_GR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,computed_value:0
+msgid "Computed value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,count:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Δημιουργήθηκε από "
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Δημιουργήθηκε στις"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,field_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Τελευταία ενημέρωση από"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Τελευταία ενημέρωση στις"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Optional Field Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:142
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:150
+#, python-format
+msgid "Please set both: 'Field' and 'Function'."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:123
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""

+ 330 - 0
i18n/en_GB.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-11 15:38+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-web-8-0/language/en_GB/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: en_GB\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Created by"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Created on"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Display Name"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Last Modified on"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Name"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sequence"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "User"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 347 - 0
i18n/es.po

@@ -0,0 +1,347 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
+# Antonio Trueba, 2016
+# Antonio Trueba, 2016
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
+# Giacomo <giacomo.spettoli@gmail.com>, 2015
+# Hotellook, 2014
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
+# Miku Laitinen <miku.laitinen@gmail.com>, 2015
+# Paolo Valier, 2016
+# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015-2016
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# SaFi J. <safi2266@gmail.com>, 2015
+# Thomas A. Jaeger, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-16 00:24+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Acción"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Activo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Promedio"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Color de fondo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr "Cuenta"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Crear"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Tablero"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Pieza del tablero"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Piezas del tablero"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Mostrar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Dominio"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Error"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Campo"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Se requiere un nombre de filtro."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Color de texto"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr "Formato"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Función"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Grupos"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr "Ayudante"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Máximo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "Valor máximo de \"%s\""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "Mediana"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "Valor mediano de \"%s\""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Mínimo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "Valor mínimo de \"%s\""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modelo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr "Seleccione por favor un campo del modelo seleccionado."
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Éxito"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Suma"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Información técnica"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "Se creó la pieza"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Pieza:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "Valor total de \"%s\""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr "Características no implementada: búsqueda en el campo activo deshabilitada."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuario"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Valor"

+ 330 - 0
i18n/es_AR.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/language/es_AR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_AR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Mostrar Nombre"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última modificación en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización realizada por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización el"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_CL.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CL/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CL\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID (identificación)"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última modificación en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización de"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_CO.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre Público"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última Modificación el"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Actualizado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Actualizado"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_CR.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:23+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-web-8-0/language/es_CR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Ultima actualización por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultima actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuario"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_DO.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-web-8-0/language/es_DO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_DO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última modificación en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización de"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_EC.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/language/es_EC/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_EC\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID (identificación)"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última modificación en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización de"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuario"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_ES.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-04 08:29+0000\n"
+"PO-Revision-Date: 2017-02-16 15:55+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/es_ES/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_ES\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre para mostrar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última modificación en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_MX.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/language/es_MX/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_MX\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre desplegado"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Ultima modificacion realizada"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Ultima actualizacion por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultima actualización realizada"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuario"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_PE.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nombre a Mostrar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Ultima Modificación en"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Actualizado última vez por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultima Actualización"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_PY.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/language/es_PY/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PY\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Ultima actualización por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultima actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/es_VE.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:30+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/language/es_VE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_VE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Mostrar nombre"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Modificada por última vez"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización realizada por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultima actualizacion en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuario"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/et.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/et/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Loonud"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Loodud"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Näidatav nimi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Viimati muudetud"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Viimati uuendatud"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Viimati uuendatud"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nimi"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Jada"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Kasutaja"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 331 - 0
i18n/eu.po

@@ -0,0 +1,331 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Esther Martín Menéndez <esthermartin001@gmail.com>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 09:00+0000\n"
+"PO-Revision-Date: 2017-02-23 15:58+0000\n"
+"Last-Translator: Esther Martín Menéndez <esthermartin001@gmail.com>\n"
+"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/eu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Nork sortua"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Created on"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Errorea"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Model"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Izena"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sekuentzia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Sum"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Balioa"

+ 330 - 0
i18n/fa.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "ایجاد شده توسط"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "ایجاد شده در"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "شناسه"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "تاریخ آخرین به‌روزرسانی"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "آخرین به روز رسانی توسط"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "آخرین به روز رسانی در"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "نام"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "دنباله"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 342 - 0
i18n/fi.po

@@ -0,0 +1,342 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011-2014
+# Florian Hatat, 2015
+# Hotellook, 2014
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
+# Paolo Valier, 2016
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# Thomas A. Jaeger, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-10 07:09+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Toiminto"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktiivinen"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Keskiarvo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Taustaväri"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr "Määrä"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Luo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Luonut"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Luotu"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Työpöytä"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Työpöydän pala"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Työpöydän palat"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Näytä"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nimi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Domain"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Virhe"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Kenttä"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Suotimen nimi on pakollinen."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Fontin väri"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Toiminto"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr "Avustin"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Viimeksi päivittänyt"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Viimeksi päivitetty"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Maksimi"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "'%s':n maksimiarvo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "Mediaani"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "'%s':n mediaaniarvo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimi"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "'%s':n minimiarvo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Malli"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nimi"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Järjestysluku"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Onnistui"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Summa"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Tekniset tiedot"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "Pala on luotu"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Pala:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "'%s':n kokonaisarvo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Käyttäjä"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 345 - 0
i18n/fr.po

@@ -0,0 +1,345 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# Carles Antoli <carlesantoli@hotmail.com>, 2015
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015-2016
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
+# danimaribeiro <danimaribeiro@gmail.com>, 2016
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2011-2013
+# Hotellook, 2014
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
+# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
+# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
+# Paolo Valier, 2016
+# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
+# Rudolf Schnapka <rs@techno-flex.de>, 2016
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-16 16:11+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Action"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Actif"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Moyenne"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Couleur de fond"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr "Compter"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Créer"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Créé par"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Créé le"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Tableau de bord"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Indicateur de tableau de bord"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Indicateurs de tableau de bord"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Afficher"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Domaine"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Erreur"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Champ"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Le nom du filtre est requis."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Couleur de la police"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr "Format"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Fonction"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Groupes"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr "Assistant"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Mis à jour par"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Mis à jour le"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Maximum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "Valeur maximale du champ '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "Médiane"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "Valeur médian du champ '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "Valeur minimale du champ '%s'"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modèle"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Séquence"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Succès"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Somme"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Informations techniques"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "L'indicateur a été créé"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Indicateur :"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "Somme du champ '%s'"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Utilisateur"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Valeur"

+ 330 - 0
i18n/fr_CA.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-29 03:45+0000\n"
+"PO-Revision-Date: 2016-12-27 08:25+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CA\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Créé par"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Créé le"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Afficher le nom"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "Identifiant"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Dernière mise à jour par"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Dernière mise à jour le"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modèle"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/fr_CH.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-29 19:38+0000\n"
+"PO-Revision-Date: 2016-12-01 10:40+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-web-8-0/language/fr_CH/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CH\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Actif"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Créer"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Créé par"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Créé le"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Modifié par"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Modifié le"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/gl.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:28+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/gl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última modificación"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "ültima actualización por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secuencia"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuario"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Valor"

+ 330 - 0
i18n/gl_ES.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-22 16:25+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-web-8-0/language/gl_ES/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gl_ES\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/he.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "נוצר על ידי"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "נוצר ב-"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "השם המוצג"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "מזהה"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "תאריך שינוי אחרון"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "עודכן לאחרונה על ידי"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "עודכן לאחרונה על"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "שם"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "רצף"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/hr.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-11 15:38+0000\n"
+"Last-Translator: Bole <bole@dajmi5.com>\n"
+"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/hr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktivno"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Kreirano"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Naziv "
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Grupe"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Zadnje modificirano"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Zadnji ažurirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Zadnje ažuriranje"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Model"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Naziv"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sekvenca"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Korisnik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Vrijednost"

+ 330 - 0
i18n/hr_HR.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-25 14:57+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/language/hr_HR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr_HR\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktivan"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Kreirano"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Zadnje modificirano"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Zadnji ažurirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Zadnje ažurirano"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/hu.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:32+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Készítette"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Létrehozás dátuma"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Utolsó frissítés dátuma"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Utoljára frissítve, által"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Utoljára frissítve "
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Név"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sorszám"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Felhasználó"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/id.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Dibuat oleh"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Dibuat pada"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Terakhir Dimodifikasi pada"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Diperbaharui oleh"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Diperbaharui pada"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nama"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Berurutan"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 340 - 0
i18n/it.po

@@ -0,0 +1,340 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
+# danimaribeiro <danimaribeiro@gmail.com>, 2016
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
+# Gustavo Lepri <gustavolepri@gmail.com>, 2015
+# Hotellook, 2014
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
+# Paolo Valier, 2016
+# Paolo Valier, 2016
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# Thomas A. Jaeger, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-23 08:32+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Azione"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Attivo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Media"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Colore di sfondo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Crea"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creato da"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creato il"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Mostra"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nome da visualizzare"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Dominio"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Errore"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Campo"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Colore del Font"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr "Formato"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Funzione"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Gruppi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Ultimo aggiornamento di"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultimo aggiornamento il"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Massimo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "Valore massimo di '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "Valore mediano di '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "Valore minimo di '%s'"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modello"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sequenza"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Riuscito"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Somma"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Informazioni tecniche"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "Valore totale di '%s'"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Utente"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Valore"

+ 330 - 0
i18n/ja.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:32+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "作成者"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "作成日"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "最終更新日"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "最終更新者"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "最終更新日"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "名称"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "付番"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "ユーザ"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/ko.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "작성자"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "작성일"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "표시 이름"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "최근 수정"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "최근 갱신한 사람"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "최근 갱신 날짜"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "이름"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "순서"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/lt.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/lt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Sukūrė"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Sukurta"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Vaizduojamas pavadinimas"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Paskutinį kartą atnaujino"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Paskutinį kartą atnaujinta"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Pavadinimas"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Seka"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Naudotojas"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/lt_LT.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-29 03:45+0000\n"
+"PO-Revision-Date: 2016-12-27 08:23+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-web-8-0/language/lt_LT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt_LT\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Sukūrė"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Sukurta"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Paskutinį kartą atnaujino"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Paskutinį kartą atnaujinta"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/lv.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-11 15:37+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Izveidoja"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Izveidots"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Pēdējo reizi atjaunoja"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Pēdējās izmaiņas"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nosaukums"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sērija"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Lietotājs"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/mk.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:32+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/mk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mk\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Креирано од"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Креирано на"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Прикажи име"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Последна промена на"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Последно ажурирање од"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Последно ажурирање на"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Име"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Секвенца"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Корисник"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/mn.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:32+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/mn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Үүсгэгч"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Үүсгэсэн"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Дэлгэцийн Нэр"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Сүүлийн засвар хийсэн огноо"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Сүүлийн засвар хийсэн"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Сүүлийн засвар хийсэн огноо"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Нэр"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Дараалал"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Хэрэглэгч"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/nb.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:28+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/language/nb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktiv"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Opprettet av"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Opprettet den"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Visnings navn"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Sist oppdatert "
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Sist oppdatert av"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Sist oppdatert"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Maksimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Navn"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sekvens"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Bruker"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Verdi"

+ 330 - 0
i18n/nb_NO.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-29 03:45+0000\n"
+"PO-Revision-Date: 2016-12-27 08:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-web-8-0/language/nb_NO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb_NO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Laget av"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Laget den"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Sist endret den"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Sist oppdatert av"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Sist oppdatert den"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 353 - 0
i18n/nl.po

@@ -0,0 +1,353 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Antonio Trueba, 2016
+# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
+# bossnm11 <bossnm11@gmail.com>, 2014
+# Bruno JOLIVEAU, 2015
+# Chanseok <kcsgoodboy@gmail.com>, 2014
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
+# Guewen Baconnier <guewen.baconnier@camptocamp.com>, 2015
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
+# jeon <bluerespect@nate.com>, 2014
+# Jong-Dae Park <jdpark7@gmail.com>, 2013,2015
+# Kevin Min <gr326887@graded.br>, 2015
+# Kunwoo Kim <crazyabtmath@naver.com>, 2015
+# LEE SI HYEONG <super2451894@gmail.com>, 2014
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
+# Pedro Castro Silva <pedrocs@sossia.pt>, 2015
+# Rudolf Schnapka <rs@techno-flex.de>, 2016
+# SaFi J. <safi2266@gmail.com>, 2015
+# Sam Ryoo <samryoo@gmail.com>, 2014
+# Seo. Junmin <sof.midnight@live.co.kr>, 2015
+# seungil <luck8778@gmail.com>, 2014
+# SEUNGWON <baeksw0620@gmail.com>, 2014
+# yterrettaz, 2015
+# yterrettaz, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:28+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/nl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Actief"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Aangemaakt door"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Aangemaakt op"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Te tonen naam"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Veld"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr "Formaat"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Groepen"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Laatst bijgewerkt op"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Laatst bijgewerkt door"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Laatst bijgewerkt op"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Naam"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Reeks"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Gebruiker"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/nl_BE.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:22+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/language/nl_BE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl_BE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Gemaakt door"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Gemaakt op"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Laatst Aangepast op"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Laatst bijgewerkt door"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Laatst bijgewerkt op"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Naam:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Volgorde"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Gebruiker"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/pl.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:33+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: 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"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Utworzone przez"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Utworzono"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Wyświetlana nazwa "
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Ostatnio modyfikowano"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Ostatnio modyfikowane przez"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ostatnia zmiana"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nazwa"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Numeracja"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Użytkownik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/pt.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/pt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Ativo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Criado em"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Modificado a última vez por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Atualizado pela última vez por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Atualizado pela última vez em"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modelo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sequência"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Utilizador"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 348 - 0
i18n/pt_BR.po

@@ -0,0 +1,348 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
+# Alejandro Santana <alejandrosantana@anubia.es>, 2015
+# Alexsandro Haag <alex@hgsoft.com.br>, 2015
+# Antonio Trueba, 2016
+# danimaribeiro <danimaribeiro@gmail.com>, 2016
+# danimaribeiro <danimaribeiro@gmail.com>, 2016
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
+# Jesús Alan Ramos Rodríguez <alan.ramos@jarsa.com.mx>, 2015
+# Jesús Alan Ramos Rodríguez <alan.ramos@jarsa.com.mx>, 2015
+# llum.birque@gmail.com <llum.birque@gmail.com>, 2015
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
+# Paolo Valier, 2016
+# Pedro Castro Silva <pedrocs@sossia.pt>, 2015
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# Stéphane Bidoul <sbi@skynet.be>, 2015
+# yterrettaz, 2015
+# yterrettaz, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-10 07:09+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Ação"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Ativo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Média"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Cor de fundo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Criar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Criado em "
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Dashboard"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Dashboard Tile"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Dashboard tiles"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Mostrar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nome para Mostrar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Domínio"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Erro"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Campo"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Filtro nome é obrigatório"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Cor da fonte"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Função"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última atualização em"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Última atualização por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Última atualização em"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Máximo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "Valor máximo de '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "Mediana"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "Valor mediano de '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minímo"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "Valor mínimo de '%s'"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modelo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sequência"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Sucesso"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Soma"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Informações técnicas"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "Tile é criado"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Tile:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "Valor total de '%s'"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Usuário"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Valor"

+ 330 - 0
i18n/pt_PT.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-web-8-0/language/pt_PT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_PT\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Ativo"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Criado em"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nome a Apresentar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Última Modificação Em"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Atualizado pela última vez por"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Atualizado pela última vez em"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Modelo"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Utilizador"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/ro.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-11 15:37+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/ro/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Creat de"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Creat la"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Nume Afişat"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Ultima actualizare în"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Ultima actualizare făcută de"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Ultima actualizare la"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Secventa"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Utilizator"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Valoare"

+ 330 - 0
i18n/ru.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/ru/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ru\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Создано"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Создан"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Поле"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Последний раз обновлено"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Последний раз обновлено"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Модель"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Название"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Последовательность"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Пользователь"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/sk.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-22 20:40+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/sk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sk\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktívne"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Vytvoril"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Vytvorené"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Zobraziť meno"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Posledná modifikácia"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Naposledy upravoval"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Naposledy upravované"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Meno"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Postupnosť"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 344 - 0
i18n/sl.po

@@ -0,0 +1,344 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
+# Carles Antoli <carlesantoli@hotmail.com>, 2015-2016
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
+# Giacomo <giacomo.spettoli@gmail.com>, 2015
+# Guewen Baconnier <guewen.baconnier@camptocamp.com>, 2015
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
+# Maxime Chambreuil <maxime.chambreuil@gmail.com>, 2015
+# Paolo Valier, 2016
+# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# SaFi J. <safi2266@gmail.com>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-10 07:06+0000\n"
+"PO-Revision-Date: 2016-12-16 00:24+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/sl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Dejanje"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktivno"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Povprečje"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Barva ozadja"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr "Števec"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Ustvari"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Ustvaril"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Ustvarjeno"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Nadzorna plošča"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Okvir nadzorne plošče"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Okvirji nadzorne plošče"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Prikaz"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Prikazni naziv"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Domena"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Napaka"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr "Podrobnosti o napaki"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Polje"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Zahtevan je naziv filtra."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Barva pisave"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr "Format"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Funkcija"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Skupine"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr "Pomočnik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr "Če je to polje nastavljeno, lahko ta okvir vidijo le uporabniki te skupine. Upoštevajte, da bo delovalo le za globalne okvirje (torej s poljem 'uporabnik' puščenim praznim)"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Zadnjič posodobil"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Zadnjič posodobljeno"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr "Glavna vrednost"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Maksimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "Maksimalna vrednost '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "Sredina"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "Srednja vrednost '%s'"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "Minimalna vrednost '%s'"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Model"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Naziv"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr "Število zapisov"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr "Izberite polje iz izbranega modela."
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr "Niz v Python formatu veljaven s str.format()\nnpr: '{:,} kg' da rezultat '1,000 kg' pri vrednosti 1000."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr "Sekundarno polje"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr "Sekundarni format"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr "Sekundarna funkcija"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr "Sekundarni pomočnik"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr "Sekundarna vrednost"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Zaporedje"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Uspeh"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Vsota"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Tehnične informacije"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "Okvir je ustvarjen"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Okvir:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "Skupna vrednost '%s'"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr "Nevgrajena možnost. Iskanje po aktivnih poljih je onemogočeno."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Uporabnik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Vrednost"

+ 330 - 0
i18n/sr.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/sr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sr\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Kreiran"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Ime"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Niz"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/sr@latin.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/language/sr@latin/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sr@latin\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Kreiran"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Ime za prikaz"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Zadnja izmjena"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Zadnja izmjena"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Zadnja izmjena"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Ime:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sekvenca"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Korisnik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/sv.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:30+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Skapad av"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Skapad den"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Visa namn"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Senast uppdaterad av"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Senast uppdaterad"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Namn"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Nummerserie"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Användare"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/th.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-11 15:37+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "สร้างโดย"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "สร้างเมื่อ"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "รหัส"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "อัพเดทครั้งสุดท้ายโดย"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "ชื่อ"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "กำหนดเลขที่เอกสาร"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "ผู้ใช้"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 339 - 0
i18n/tr.po

@@ -0,0 +1,339 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
+# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
+# Antonio Trueba, 2016
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013
+# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
+# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
+# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
+# SaFi J. <safi2266@gmail.com>, 2015
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-29 03:45+0000\n"
+"PO-Revision-Date: 2016-12-30 21:18+0000\n"
+"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>\n"
+"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Eylem"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Aktif"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr "Ortalama"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr "Arkaplan rengi"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr "Say"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr "Oluştur"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Oluşturan"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Oluşturuldu"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr "Gösterge panosu"
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr "Gösterge parçası"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr "Gösterge parçası"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr "Görünüm"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Görünen İsim"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Alan"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Hata"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr "Hata Detayları"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr "Alan"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr "Filtre adı zorunlu"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr "Font rengi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr "Biçim"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr "Fonksiyon"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr "Gruplar"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr "Yardımcı"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr "Eğer bu alan işaretlenirse, sadece bu grubun kullanıcıları bu paneli görür. Sadece global panellerde çalışır. (yani kullanıcı alanı boş olan paneller)"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Son değişiklik"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Son Güncelleyen"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Son güncellendi"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr "Ana Değer"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr "Maksimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr "'%s' nin en fazla değeri"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr "orta değer"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr "'%s' nin orta değeri"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr "Minimum"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr "'%s' nin en düşük değeri"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Model"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Adı"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr "Kayıtların Adedi"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr "Seçilmiş modelden bir alan seçin."
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr "Python biçim stringi str.format() fonsiyonu ile\nör:eğer değer 1000 ise. '{:,} Kg' çıktı olarak '1,000 Kg' verir"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr "İkincil Alan"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr "Akincil Biçim"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr "İkincil Fonksiyon"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr "İkincil Yardımcı"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr "İkincil Değer"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sıralama"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr "Başarılı"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr "Toplam"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr "Teknik Bilgiler"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr "Parça oluşturuldu"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr "Parça:"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr "'%s' nin toplam değeri"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr "Uygulanmamış Özellik. Etkin alanı kapalı iken arayın."
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Kullanıcı"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr "Değer"

+ 330 - 0
i18n/tr_TR.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-31 10:10+0000\n"
+"PO-Revision-Date: 2017-01-04 14:44+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/language/tr_TR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr_TR\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr "Eylem"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr "Etkin"
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Oluşturan"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Oluşturulma tarihi"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Görünen ad"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr "Alan"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr "Hata"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "Kimlik"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "En son güncelleme tarihi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "En son güncelleyen "
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "En son güncelleme tarihi"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr "Tip"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Ad"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Sıra"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Kullanıcı"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/uk.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-11-26 01:59+0000\n"
+"PO-Revision-Date: 2016-11-19 17:14+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/uk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: uk\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Створив"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Дата створення"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Назва для відображення"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Остання модифікація"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Востаннє оновив"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Останнє оновлення"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Name"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Послідовність"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/vi.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:23+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/vi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Được tạo bởi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Được tạo vào"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Cập nhật lần cuối vào"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "Tên"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "Trình tự"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "Người sử dụng"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/vi_VN.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-29 03:45+0000\n"
+"PO-Revision-Date: 2016-12-27 08:24+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-web-8-0/language/vi_VN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi_VN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "Tạo bởi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "Tạo vào"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "Cập nhật lần cuối bởi"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "Cập nhật lần cuối vào"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 232 - 0
i18n/web_dashboard_tile.pot

@@ -0,0 +1,232 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* web_dashboard_tile
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 7.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-04-10 01:03+0000\n"
+"PO-Revision-Date: 2015-04-10 01:03+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/tile.py:82
+#, python-format
+msgid "Average value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,computed_value:0
+msgid "Computed Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,count:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:0
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:0
+msgid "Delete"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:0
+msgid "Edit..."
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:61
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: constraint:tile.tile:0
+msgid "Error ! Please select a field of the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: constraint:tile.tile:0
+msgid "Error ! Please set both fields: 'Field' and 'Function'."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:61
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font Color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,field_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,helper:0
+msgid "Helper Text"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/tile.py:76
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/tile.py:85
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/tile.py:73
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:100
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,field_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Tile Name"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:100
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/tile.py:79
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:_description:0
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#, python-format
+msgid "tile.tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:0
+msgid "í"
+msgstr ""

+ 330 - 0
i18n/zh_CN.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:31+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "创建者"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "创建时间"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "最后修改时间"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "最后更新者"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "上次更新日期"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "名称"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "序号"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "用户"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 330 - 0
i18n/zh_TW.po

@@ -0,0 +1,330 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * web_dashboard_tile
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: web (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-07 08:33+0000\n"
+"PO-Revision-Date: 2017-01-13 09:26+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/language/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,action_id:0
+msgid "Action"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,active:0
+msgid "Active"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Average"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,background_color:0
+msgid "Background color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Count"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:8
+#, python-format
+msgid "Create"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_uid:0
+msgid "Created by"
+msgstr "建立者"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,create_date:0
+msgid "Created on"
+msgstr "建立於"
+
+#. module: web_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_kanban_dashboard_tile
+#: model:ir.actions.act_window,name:web_dashboard_tile.action_tree_dashboard_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.mail_dashboard
+msgid "Dashboard"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: model:ir.model,name:web_dashboard_tile.model_tile_tile
+#: model:ir.ui.menu,name:web_dashboard_tile.menue_dashboard_tile
+msgid "Dashboard Tile"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_tree_view
+msgid "Dashboard tiles"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Display"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,display_name:0
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,domain:0
+msgid "Domain"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Error"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,error:0
+msgid "Error Details"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_field_id:0
+msgid "Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:56
+#, python-format
+msgid "Filter name is required."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,font_color:0
+msgid "Font color"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_format:0
+msgid "Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_function:0
+msgid "Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,group_ids:0
+msgid "Groups"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_helper:0
+msgid "Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,id:0
+msgid "ID"
+msgstr "編號"
+
+#. module: web_dashboard_tile
+#: help:tile.tile,group_ids:0
+msgid ""
+"If this field is set, only users of this group can view this tile. Please "
+"note that it will only work for global tiles (that is, when User field is "
+"left empty)"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,__last_update:0
+msgid "Last Modified on"
+msgstr "最後修改:"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_uid:0
+msgid "Last Updated by"
+msgstr "最後更新:"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,write_date:0
+msgid "Last Updated on"
+msgstr "最後更新於"
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Main Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Maximum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:39
+#, python-format
+msgid "Maximum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Median"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:51
+#, python-format
+msgid "Median value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Minimum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:35
+#: code:addons/web_dashboard_tile/models/tile_tile.py:47
+#, python-format
+msgid "Minimum value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,model_id:0
+msgid "Model"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,name:0
+msgid "Name"
+msgstr "名稱"
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:31
+#, python-format
+msgid "Number of records"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:239
+#, python-format
+msgid "Please select a field from the selected model."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: help:tile.tile,primary_format:0 help:tile.tile,secondary_format:0
+msgid ""
+"Python Format String valid with str.format()\n"
+"ie: '{:,} Kgs' will output '1,000 Kgs' if value is 1000."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_field_id:0
+msgid "Secondary Field"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_format:0
+msgid "Secondary Format"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_function:0
+msgid "Secondary Function"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,secondary_helper:0
+msgid "Secondary Helper"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+#: field:tile.tile,secondary_value:0
+msgid "Secondary Value"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,sequence:0
+msgid "Sequence"
+msgstr "序列"
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Success"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: selection:tile.tile,primary_function:0
+#: selection:tile.tile,secondary_function:0
+msgid "Sum"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: view:tile.tile:web_dashboard_tile.dashboard_tile_tile_form_view
+msgid "Technical Informations"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/js/custom_js.js:95
+#, python-format
+msgid "Tile is created"
+msgstr ""
+
+#. module: web_dashboard_tile
+#. openerp-web
+#: code:addons/web_dashboard_tile/static/src/xml/custom_xml.xml:6
+#, python-format
+msgid "Tile:"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:43
+#, python-format
+msgid "Total value of '%s'"
+msgstr ""
+
+#. module: web_dashboard_tile
+#: code:addons/web_dashboard_tile/models/tile_tile.py:215
+#, python-format
+msgid "Unimplemented Feature. Search on Active field disabled."
+msgstr ""
+
+#. module: web_dashboard_tile
+#: field:tile.tile,user_id:0
+msgid "User"
+msgstr "使用者"
+
+#. module: web_dashboard_tile
+#: field:tile.tile,primary_value:0
+msgid "Value"
+msgstr ""

+ 13 - 0
migrations/8.0.3.0/post-migration.py

@@ -0,0 +1,13 @@
+# -*- coding: utf-8 -*-
+# © 2016 Iván Todorovich <ivan.todorovich@gmail.com>
+# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
+
+
+def migrate(cr, version):
+    if version is None:
+        return
+
+    # Rename old fields
+    cr.execute("""UPDATE tile_tile SET primary_function = 'count'""")
+    cr.execute("""UPDATE tile_tile SET secondary_function = field_function""")
+    cr.execute("""UPDATE tile_tile SET secondary_field_id = field_id""")

+ 26 - 0
migrations/8.0.4.0/post-migration.py

@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+# © 2016 Iván Todorovich <ivan.todorovich@gmail.com>
+# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
+
+
+def migrate(cr, version):
+    if version is None:
+        return
+
+    # Update ir.rule
+    cr.execute("""
+        SELECT res_id FROM ir_model_data
+        WHERE name = 'model_tile_rule'
+        AND module = 'web_dashboard_tile'""")
+    rule_id = cr.fetchone()[0]
+    new_domain = """[
+        "|",
+        ("user_id","=",user.id),
+        ("user_id","=",False),
+        "|",
+        ("group_ids","=",False),
+        ("group_ids","in",[g.id for g in user.groups_id]),
+        ]"""
+    cr.execute("""
+        UPDATE ir_rule SET domain_force = '%(domain)s'
+        WHERE id = '%(id)s' """ % {'domain': new_domain, 'id': rule_id})

+ 7 - 0
models/__init__.py

@@ -0,0 +1,7 @@
+# -*- coding: utf-8 -*-
+# © 2010-2013 OpenERP s.a. (<http://openerp.com>).
+# © 2014 initOS GmbH & Co. KG (<http://www.initos.com>).
+# © 2015-Today GRAP
+# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
+
+from . import tile_tile

BIN
models/__init__.pyc


+ 281 - 0
models/tile_tile.py

@@ -0,0 +1,281 @@
+# -*- coding: utf-8 -*-
+# © 2010-2013 OpenERP s.a. (<http://openerp.com>).
+# © 2014 initOS GmbH & Co. KG (<http://www.initos.com>).
+# © 2015-Today GRAP
+# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
+
+import datetime
+import time
+from dateutil.relativedelta import relativedelta
+from collections import OrderedDict
+
+from openerp import api, fields, models
+from openerp.tools.safe_eval import safe_eval as eval
+from openerp.tools.translate import _
+from openerp.exceptions import ValidationError, except_orm
+
+
+def median(vals):
+    # https://docs.python.org/3/library/statistics.html#statistics.median
+    # TODO : refactor, using statistics.median when Odoo will be available
+    #  in Python 3.4
+    even = (0 if len(vals) % 2 else 1) + 1
+    half = (len(vals) - 1) / 2
+    return sum(sorted(vals)[half:half + even]) / float(even)
+
+
+FIELD_FUNCTIONS = OrderedDict([
+    ('count', {
+        'name': 'Count',
+        'func': False,  # its hardcoded in _compute_data
+        # 'help': _('Number of records')
+        }),
+    ('min', {
+        'name': 'Minimum',
+        'func': min,
+        'help': _("Minimum value of '%s'")}),
+    ('max', {
+        'name': 'Maximum',
+        'func': max,
+        'help': _("Maximum value of '%s'")}),
+    ('sum', {
+        'name': 'Sum',
+        'func': sum,
+        # 'help': _("Total value of '%s'")
+        }),
+    ('avg', {
+        'name': 'Average',
+        'func': lambda vals: sum(vals)/len(vals),
+        'help': _("Minimum value of '%s'")}),
+    ('median', {
+        'name': 'Median',
+        'func': median,
+        'help': _("Median value of '%s'")}),
+])
+
+
+FIELD_FUNCTION_SELECTION = [
+    (k, FIELD_FUNCTIONS[k].get('name')) for k in FIELD_FUNCTIONS]
+
+
+class TileTile(models.Model):
+    _name = 'tile.tile'
+    _description = 'Dashboard Tile'
+    _order = 'sequence, name'
+
+    def _get_eval_context(self):
+        def _context_today():
+            return fields.Date.from_string(fields.Date.context_today(self))
+        context = self.env.context.copy()
+        context.update({
+            'time': time,
+            'datetime': datetime,
+            'relativedelta': relativedelta,
+            'context_today': _context_today,
+            'current_date': fields.Date.today(),
+        })
+        return context
+
+    # Column Section
+    name = fields.Char(required=True)
+    sequence = fields.Integer(default=0, required=True)
+    user_id = fields.Many2one('res.users', 'User')
+    background_color = fields.Char(default='#0E6C7E', oldname='color')
+    font_color = fields.Char(default='#FFFFFF')
+
+    group_ids = fields.Many2many(
+        'res.groups',
+        string='Groups',
+        help='If this field is set, only users of this group can view this '
+             'tile. Please note that it will only work for global tiles '
+             '(that is, when User field is left empty)')
+
+    model_id = fields.Many2one('ir.model', 'Model', required=True)
+    domain = fields.Text(default='[]')
+    action_id = fields.Many2one('ir.actions.act_window', 'Action')
+
+    active = fields.Boolean(
+        compute='_compute_active',
+        search='_search_active',
+        readonly=True)
+
+    # Primary Value
+    primary_function = fields.Selection(
+        FIELD_FUNCTION_SELECTION,
+        string='Function',
+        default='count')
+    primary_field_id = fields.Many2one(
+        'ir.model.fields',
+        string='Field',
+        domain="[('model_id', '=', model_id),"
+               " ('ttype', 'in', ['float', 'integer'])]")
+    primary_format = fields.Char(
+        string='Format',
+        help='Python Format String valid with str.format()\n'
+             'ie: \'{:,} Kgs\' will output \'1,000 Kgs\' if value is 1000.')
+    primary_value = fields.Char(
+        string='Value',
+        compute='_compute_data')
+    primary_helper = fields.Char(
+        string='Helper',
+        compute='_compute_helper')
+
+    # Secondary Value
+    secondary_function = fields.Selection(
+        FIELD_FUNCTION_SELECTION,
+        string='Secondary Function')
+    secondary_field_id = fields.Many2one(
+        'ir.model.fields',
+        string='Secondary Field',
+        domain="[('model_id', '=', model_id),"
+               " ('ttype', 'in', ['float', 'integer'])]")
+    secondary_format = fields.Char(
+        string='Secondary Format',
+        help='Python Format String valid with str.format()\n'
+             'ie: \'{:,} Kgs\' will output \'1,000 Kgs\' if value is 1000.')
+    secondary_value = fields.Char(
+        string='Secondary Value',
+        compute='_compute_data')
+    secondary_helper = fields.Char(
+        string='Secondary Helper',
+        compute='_compute_helper')
+
+    error = fields.Char(
+        string='Error Details',
+        compute='_compute_data')
+
+    @api.one
+    def _compute_data(self):
+        if not self.active:
+            return
+        model = self.env[self.model_id.model]
+        eval_context = self._get_eval_context()
+        domain = self.domain or '[]'
+        try:
+            count = model.search_count(eval(domain, eval_context))
+        except Exception as e:
+            self.primary_value = self.secondary_value = 'ERR!'
+            self.error = str(e)
+            return
+        if any([
+            self.primary_function and
+            self.primary_function != 'count',
+            self.secondary_function and
+            self.secondary_function != 'count'
+                ]):
+                records = model.search(eval(domain, eval_context))
+        for f in ['primary_', 'secondary_']:
+            f_function = f+'function'
+            f_field_id = f+'field_id'
+            f_format = f+'format'
+            f_value = f+'value'
+            value = 0
+            if self[f_function] == 'count':
+                value = count
+            elif self[f_function]:
+                func = FIELD_FUNCTIONS[self[f_function]]['func']
+                if func and self[f_field_id] and count:
+                    vals = [x[self[f_field_id].name] for x in records]
+                    value = func(vals)
+            if self[f_function]:
+                try:
+                    self[f_value] = (self[f_format] or '{:,}').format(value)
+                except ValueError as e:
+                    self[f_value] = 'F_ERR!'
+                    self.error = str(e)
+                    return
+            else:
+                self[f_value] = False
+
+    @api.one
+    @api.onchange('primary_function', 'primary_field_id',
+                  'secondary_function', 'secondary_field_id')
+    def _compute_helper(self):
+        for f in ['primary_', 'secondary_']:
+            f_function = f+'function'
+            f_field_id = f+'field_id'
+            f_helper = f+'helper'
+            self[f_helper] = ''
+            field_func = FIELD_FUNCTIONS.get(self[f_function], {})
+            help = field_func.get('help', False)
+            if help:
+                if self[f_function] != 'count' and self[f_field_id]:
+                    desc = self[f_field_id].field_description
+                    self[f_helper] = help % desc
+                else:
+                    self[f_helper] = help
+
+    @api.one
+    def _compute_active(self):
+        ima = self.env['ir.model.access']
+        self.active = ima.check(self.model_id.model, 'read', False)
+
+    def _search_active(self, operator, value):
+        cr = self.env.cr
+        if operator != '=':
+            raise except_orm(
+                _('Unimplemented Feature. Search on Active field disabled.'))
+        ima = self.env['ir.model.access']
+        ids = []
+        cr.execute("""
+            SELECT tt.id, im.model
+            FROM tile_tile tt
+            INNER JOIN ir_model im
+                ON tt.model_id = im.id""")
+        for result in cr.fetchall():
+            if (ima.check(result[1], 'read', False) == value):
+                ids.append(result[0])
+        return [('id', 'in', ids)]
+
+    # Constraints and onchanges
+    @api.one
+    @api.constrains('model_id', 'primary_field_id', 'secondary_field_id')
+    def _check_model_id_field_id(self):
+        if any([
+            self.primary_field_id and
+            self.primary_field_id.model_id.id != self.model_id.id,
+            self.secondary_field_id and
+            self.secondary_field_id.model_id.id != self.model_id.id
+                ]):
+                raise ValidationError(
+                    _("Please select a field from the selected model."))
+
+    @api.onchange('model_id')
+    def _onchange_model_id(self):
+        self.primary_field_id = False
+        self.secondary_field_id = False
+
+    @api.onchange('primary_function', 'secondary_function')
+    def _onchange_function(self):
+        if self.primary_function in [False, 'count']:
+            self.primary_field_id = False
+        if self.secondary_function in [False, 'count']:
+            self.secondary_field_id = False
+
+    # Action methods
+    @api.multi
+    def open_link(self):
+        res = {
+            'name': self.name,
+            'view_type': 'form',
+            'view_mode': 'tree',
+            'view_id': [False],
+            'res_model': self.model_id.model,
+            'type': 'ir.actions.act_window',
+            'context': self.env.context,
+            'nodestroy': True,
+            'target': 'current',
+            'domain': self.domain,
+        }
+        if self.action_id:
+            res.update(self.action_id.read(
+                ['view_type', 'view_mode', 'type'])[0])
+        return res
+
+    @api.model
+    def add(self, vals):
+        if 'model_id' in vals and not vals['model_id'].isdigit():
+            # need to replace model_name with its id
+            vals['model_id'] = self.env['ir.model'].search(
+                [('model', '=', vals['model_id'])]).id
+        self.create(vals)

BIN
models/tile_tile.pyc


+ 2 - 0
security/ir.model.access.csv

@@ -0,0 +1,2 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+tile_user,tile_user,model_tile_tile,base.group_user,1,1,1,1

+ 22 - 0
security/rules.xml

@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+<data noupdate="1">
+
+    <record id="model_tile_rule" model="ir.rule">
+        <field name="name">tile.owner</field>
+        <field name="model_id" ref="model_tile_tile" />
+        <field name="groups" eval="[(4, ref('base.group_user'))]"/>
+        <field name="domain_force">
+        [
+            '|',
+            ('user_id','=',user.id),
+            ('user_id','=',False),
+            '|',
+            ('group_ids','=',False),
+            ('group_ids','in',[g.id for g in user.groups_id]),
+        ]
+        </field>
+    </record>
+
+</data>
+</openerp>

BIN
static/description/icon.png


+ 59 - 0
static/src/css/tile.css

@@ -0,0 +1,59 @@
+.openerp .oe_kanban_view .oe_dashboard_tile {
+    width: 250px;
+    height: 150px;
+    border: 0;
+    border-radius: 2px 2px 2px 2px;
+}
+
+/* Disable default kanban style */
+.openerp .oe_kanban_view .oe_dashboard_tile .oe_kanban_content div:first-child {
+    margin-right: inherit!important;
+}
+
+.openerp .oe_kanban_view .oe_dashboard_tile .tile_label,
+.openerp .oe_kanban_view .oe_dashboard_tile .tile_primary_value,
+.openerp .oe_kanban_view .oe_dashboard_tile .tile_secondary_value {
+    text-align: center;
+    font-weight: bold;
+}
+
+.openerp .oe_kanban_view .oe_dashboard_tile .tile_label {
+    padding: 5px;
+    font-size: 15px;
+}
+
+.openerp .oe_kanban_view .oe_dashboard_tile .tile_primary_value{
+    font-size: 54px;
+    position: absolute;
+    left: 5px;
+    right: 5px;
+    bottom: 5px;
+}
+
+.openerp .oe_kanban_view .oe_dashboard_tile .tile_secondary_value{
+    display: none;
+    font-size: 18px;
+    font-style: italic;
+    position: absolute;
+    left: 5px;
+    right: 5px;
+    bottom: 5px;
+}
+
+.openerp .oe_kanban_view .oe_dashboard_tile .with_secondary .tile_primary_value{
+    font-size: 38px;
+    bottom: 30px;
+}
+
+.openerp .oe_kanban_view .oe_dashboard_tile .with_secondary .tile_secondary_value{
+    display: block;
+}
+
+/* SearchView Drawer */
+.openerp .oe_searchview_drawer .oe_searchview_dashboard .oe_dashboard_tile_form {
+    display: none;
+}
+
+.openerp .oe_searchview_drawer .oe_opened .oe_dashboard_tile_form {
+    display: block;
+}

BIN
static/src/img/avg.png


BIN
static/src/img/max.png


BIN
static/src/img/median.png


BIN
static/src/img/min.png


BIN
static/src/img/screenshot_action_click.png


BIN
static/src/img/screenshot_dashboard.png


BIN
static/src/img/sum.png


+ 100 - 0
static/src/js/custom_js.js

@@ -0,0 +1,100 @@
+//  @@@ web_dashboard_tile custom JS @@@
+//#############################################################################
+//    
+//    Copyright (C) 2010-2013 OpenERP s.a. (<http://www.openerp.com>)
+//    Copyright (C) 2014 initOS GmbH & Co. KG (<http://initos.com>)
+//
+//    This program is free software: you can redistribute it and/or modify
+//    it under the terms of the GNU Affero General Public License as published
+//    by the Free Software Foundation, either version 3 of the License, or
+//    (at your option) any later version.
+//
+//    This program is distributed in the hope that it will be useful,
+//    but WITHOUT ANY WARRANTY; without even the implied warranty of
+//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//    GNU Affero General Public License for more details.
+//
+//    You should have received a copy of the GNU Affero General Public License
+//    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+//
+//#############################################################################
+
+openerp.web_dashboard_tile = function (instance)
+{
+var QWeb = instance.web.qweb,
+    _t =  instance.web._t,
+   _lt = instance.web._lt;
+_.mixin({
+  sum: function (obj) { return _.reduce(obj, function (a, b) { return a + b; }, 0); }
+});
+    var module = instance.board.AddToDashboard;
+
+    module.include({
+        start: function () {
+            this._super();
+            var self = this;
+            this.$('#add_dashboard_tile').on('click', this, function (){
+              self.save_tile();
+            });
+        },
+        render_data: function(dashboard_choices){
+            var selection = instance.web.qweb.render(
+                "SearchView.addtodashboard.selection", {
+                    selections: dashboard_choices});
+            this.$("form input").before(selection);
+        },
+        save_tile: function () {
+            var self = this;
+            var view_parent = this.getParent().getParent();
+
+            var $name = this.$('#dashboard_tile_new_name');
+
+            this.tile = new instance.web.Model('tile.tile');
+
+            var private_filter = !this.$('#oe_searchview_custom_public').prop('checked');
+            if (_.isEmpty($name.val())){
+                this.do_warn(_t("Error"), _t("Filter name is required."));
+                return false;
+            }
+            var search = this.view.build_search_data();
+            var context = new instance.web.CompoundContext(view_parent.dataset.get_context() || []);
+            var domain = new instance.web.CompoundDomain(view_parent.dataset.get_domain() || []);
+            _.each(search.contexts, context.add, context);
+            _.each(search.domains, domain.add, domain);
+
+            var c = instance.web.pyeval.eval('context', context);
+            for(var k in c) {
+                if (c.hasOwnProperty(k) && /^search_default_/.test(k)) {
+                    delete c[k];
+                }
+            }
+            // TODO: replace this 6.1 workaround by attribute on <action/>
+            c.dashboard_merge_domains_contexts = false;
+            var d = instance.web.pyeval.eval('domain', domain);
+
+            context.add({
+                group_by: instance.web.pyeval.eval('groupbys', search.groupbys || [])
+            });
+            // Don't save user_context keys in the custom filter, otherwise end
+            // up with e.g. wrong uid or lang stored *and used in subsequent
+            // reqs*
+            var ctx = context;
+            _(_.keys(instance.session.user_context)).each(function (key) {
+                delete ctx[key];
+            });
+            var filter = {
+                name: $name.val(),
+                user_id: private_filter ? instance.session.uid : false,
+                model_id: self.view.model,
+                //context: context,
+                domain: d,
+                action_id: view_parent.action.id,
+            };
+            // FIXME: current context?
+            return self.tile.call('add', [filter]).done(function (id) {
+                self.do_warn(_t("Success"), _t("Tile is created"));
+            });
+
+        }
+    });
+};

+ 12 - 0
static/src/xml/custom_xml.xml

@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<templates id="template" xml:space="preserve">
+    <t t-extend="SearchView.addtodashboard">
+        <t t-jquery="form" t-operation="after">
+            <div class="oe_dashboard_tile_form">
+                <label for="dashboard_tile_new_name">Titulo:</label>
+                <input id="dashboard_tile_new_name" />
+                <button id="add_dashboard_tile">Crear</button>
+            </div>
+        </t>
+    </t>
+</templates>

+ 6 - 0
tests/__init__.py

@@ -0,0 +1,6 @@
+# -*- coding: utf-8 -*-
+# © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com>
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
+# flake8: noqa
+
+from . import test_tile

+ 52 - 0
tests/test_tile.py

@@ -0,0 +1,52 @@
+# -*- coding: utf-8 -*-
+# © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com>
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
+
+from openerp.tests.common import TransactionCase
+
+
+class TestTile(TransactionCase):
+    def test_tile(self):
+        tile_obj = self.env['tile.tile']
+        model_id = self.env['ir.model'].search([
+            ('model', '=', 'tile.tile')])
+        field_id = self.env['ir.model.fields'].search([
+            ('model_id', '=', model_id.id),
+            ('name', '=', 'sequence')])
+        self.tile1 = tile_obj.create({
+            'name': 'Count / Sum',
+            'sequence': 1,
+            'model_id': model_id.id,
+            'domain': "[('model_id', '=', %d)]" % model_id.id,
+            'secondary_function': 'sum',
+            'secondary_field_id': field_id.id})
+        self.tile2 = tile_obj.create({
+            'name': 'Min / Max',
+            'sequence': 2,
+            'model_id': model_id.id,
+            'domain': "[('model_id', '=', %d)]" % model_id.id,
+            'primary_function': 'min',
+            'primary_field_id': field_id.id,
+            'secondary_function': 'max',
+            'secondary_field_id': field_id.id})
+        self.tile3 = tile_obj.create({
+            'name': 'Avg / Median',
+            'sequence': 3,
+            'model_id': model_id.id,
+            'domain': "[('model_id', '=', %d)]" % model_id.id,
+            'primary_function': 'avg',
+            'primary_field_id': field_id.id,
+            'secondary_function': 'median',
+            'secondary_field_id': field_id.id})
+        # count
+        self.assertEqual(self.tile1.primary_value, '3')
+        # sum
+        self.assertEqual(self.tile1.secondary_value, '6')
+        # min
+        self.assertEqual(self.tile2.primary_value, '1')
+        # max
+        self.assertEqual(self.tile2.secondary_value, '3')
+        # average
+        self.assertEqual(self.tile3.primary_value, '2')
+        # median
+        self.assertEqual(self.tile3.secondary_value, '2.0')

+ 33 - 0
views/templates.xml

@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--***************************************************************************
+    Web - Custom Element Number in ListView module for Odoo
+    Copyright (C) 2015-Today Akretion (http://www.akretion.com)
+    @author Sylvain LE GAL (https://twitter.com/legalsylvain)
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU Affero General Public License as
+    published by the Free Software Foundation, either version 3 of the
+    License, or (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU Affero General Public License for more details.
+
+    You should have received a copy of the GNU Affero General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+****************************************************************************-->
+
+<openerp>
+    <data>
+        <template id="assets_backend" name="web_dashboard_tile assets" inherit_id="web.assets_backend">
+            <xpath expr="." position="inside">
+                <link rel="stylesheet"
+                    href="/web_dashboard_tile/static/src/css/tile.css"/>
+                <script type="text/javascript"
+                    src="/web_dashboard_tile/static/src/js/custom_js.js">
+                </script>
+            </xpath>
+        </template>
+    </data>
+</openerp>

+ 161 - 0
views/tile.xml

@@ -0,0 +1,161 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+    <data>
+       <record model="ir.ui.view" id="dashboard_tile_tile_tree_view">
+            <field name="model">tile.tile</field>
+            <field name="arch" type="xml">
+                <tree string="Dashboard tiles">
+                    <field name="sequence" widget="handle"/>
+                    <field name="name"/>
+                    <field name="domain"/>
+                    <field name="model_id"/>
+                    <field name="primary_function"/>
+                    <field name="primary_field_id"/>
+                    <field name="secondary_function"/>
+                    <field name="secondary_field_id"/>
+                    <field name="user_id"/>
+                    <field name="background_color" widget="color"/>
+                </tree>
+            </field>
+        </record>
+        
+        <record model="ir.ui.view" id="dashboard_tile_tile_form_view">
+            <field name="model">tile.tile</field>
+            <field name="arch" type="xml">
+                <form string="Dashboard tiles">
+                    <sheet>
+                        <h1>
+                            <field name="name"/>
+                        </h1>
+                        <group col="4">
+                            <separator string="Display" colspan="4"/>
+                            <field name="background_color" widget="color"/>
+                            <field name="font_color" widget="color"/>
+                            <field name="user_id"/>
+                            <separator string="Technical Informations" colspan="4"/>
+                            <field name="model_id"/>
+                            <field name="action_id"/>
+                            <field name="domain" colspan="4"/>
+                            <separator colspan="4"/>
+                            <field name="error" attrs="{'invisible':[('error','=',False)]}"/>
+                        </group>
+                        <notebook>
+                            <page string="Main Value">
+                                <group>
+                                    <group>
+                                        <field name="primary_function"/>
+                                        <field name="primary_field_id" attrs="{
+                                            'invisible':[('primary_function','in',[False,'count'])],
+                                            'required':[('primary_function','not in',[False,'count'])],
+                                        }"/>
+                                    </group>
+                                    <group>
+                                        <field name="primary_format"/>
+                                    </group>
+                                    <group>
+                                        <field name="primary_helper"/>
+                                        <field name="primary_value" attrs="{'invisible':[('primary_value','=',False)]}"/>
+                                    </group>
+                                </group>
+                            </page>
+                            <page string="Secondary Value">
+                                <group>
+                                    <group>
+                                        <field name="secondary_function"/>
+                                        <field name="secondary_field_id" attrs="{
+                                            'invisible':[('secondary_function','in',[False,'count'])],
+                                            'required':[('secondary_function','not in',[False,'count'])],
+                                        }"/>
+                                    </group>
+                                    <group>
+                                        <field name="secondary_format"/>
+                                    </group>
+                                    <group>
+                                        <field name="secondary_helper"/>
+                                        <field name="secondary_value" attrs="{'invisible':[('secondary_value','=',False)]}"/>
+                                    </group>
+                                </group>
+                            </page>
+                            <page string="Groups">
+                                <field name="group_ids"/>
+                            </page>
+                        </notebook>
+                    </sheet>
+                </form>
+            </field>
+        </record>
+
+        <!-- CRM Lead Kanban View  -->
+       <record model="ir.ui.view" id="dashboard_tile_tile_kanban_view">
+            <field name="model">tile.tile</field>
+            <field name="arch" type="xml">
+                <kanban edit="false" create="false">
+                    <field name="name"/>
+                    <field name="domain"/>
+                    <field name="model_id"/>
+                    <field name="action_id"/>
+                    <field name="background_color"/>
+                    <field name="font_color"/>
+                    <field name="primary_function"/>
+                    <field name="primary_helper"/>
+                    <field name="secondary_function"/>
+                    <field name="secondary_helper"/>
+
+                    <templates>
+                        <t t-name="kanban-box">
+                            <div t-attf-class="oe_dashboard_tile oe_kanban_global_click" t-attf-style="background-color:#{record.background_color.raw_value}" >
+                                <div class="oe_kanban_content">
+                                    <a type="object" name="open_link" args="[]" t-attf-style="color:#{record.font_color.raw_value};">
+                                        <div style="height:100%;" t-att-class="record.secondary_function.raw_value and 'with_secondary' or 'simple'">
+                                            <div class="tile_label">
+                                                <field name="name"/>
+                                            </div>
+                                            <div class="tile_primary_value" t-att-title="record.primary_helper.raw_value">
+                                                <t t-set="l" t-value="record.primary_value.raw_value.length" />
+                                                <t t-set="s" t-value="l>=12 and 35 or l>=10 and 45 or l>=8 and 55 or l>=6 and 75 or l>4 and 85 or 100"/>
+                                                <span t-attf-style="font-size: #{s}%;"><field name="primary_value"/></span>
+                                            </div>
+                                            <div class="tile_secondary_value" t-att-title="record.secondary_helper.raw_value">
+                                                <span><field name="secondary_value"/></span>
+                                            </div>
+                                        </div>
+                                    </a>
+                                </div>
+                                <div class="oe_clear"></div>
+                            </div>
+                        </t>
+                    </templates>
+                </kanban>
+            </field>
+        </record>
+
+        <record model="ir.actions.act_window" id="action_tree_dashboard_tile">
+            <field name="name">Dashboard</field>
+            <field name="res_model">tile.tile</field>
+            <field name="view_type">form</field>
+            <field name="view_mode">tree,kanban,form</field>
+            <field name="view_id" ref="dashboard_tile_tile_tree_view"/>
+        </record>
+
+        <menuitem id="menue_dashboard_tile" 
+            name="Dashboard Tile" parent="base.next_id_2"
+            action="action_tree_dashboard_tile" sequence="50"/>
+
+        <record model="ir.actions.act_window" id="action_kanban_dashboard_tile">
+            <field name="name">Dashboard</field>
+            <field name="res_model">tile.tile</field>
+            <field name="view_type">form</field>
+            <field name="view_mode">kanban</field>
+            <field name="domain">['|',('user_id','=',False),('user_id','=',uid)]</field>
+            <field name="view_id" ref="dashboard_tile_tile_tree_view"/>
+        </record>
+
+        <record id="mail_dashboard" model="ir.ui.menu">
+          <field name="name">Dashboard</field>
+          <field name="sequence" eval="9"/>
+          <field name="action" ref="action_kanban_dashboard_tile"/>
+          <field name="parent_id" ref="mail.mail_feeds"/>
+        </record>
+
+    </data>
+</openerp>