trytond_dashboard-5.0.2/0000755000175000017500000000000013525751533014551 5ustar cedced00000000000000trytond_dashboard-5.0.2/CHANGELOG0000644000175000017500000000323113525751531015760 0ustar cedced00000000000000Version 5.0.2 - 2019-08-17 * Bug fixes (see mercurial logs for details) Version 5.0.1 - 2019-02-19 * Bug fixes (see mercurial logs for details) Version 5.0.0 - 2018-10-01 * Bug fixes (see mercurial logs for details) * Remove support for Python 2.7 Version 4.8.0 - 2018-04-23 * Bug fixes (see mercurial logs for details) Version 4.6.0 - 2017-10-30 * Bug fixes (see mercurial logs for details) Version 4.4.0 - 2017-05-01 * Bug fixes (see mercurial logs for details) Version 4.2.0 - 2016-11-28 * Bug fixes (see mercurial logs for details) Version 4.0.0 - 2016-05-02 * Bug fixes (see mercurial logs for details) * Add Python3 support Version 3.8.0 - 2015-11-02 * Bug fixes (see mercurial logs for details) Version 3.6.0 - 2015-04-20 * Bug fixes (see mercurial logs for details) * Add support for PyPy Version 3.4.0 - 2014-10-20 * Bug fixes (see mercurial logs for details) Version 3.2.0 - 2014-04-21 * Bug fixes (see mercurial logs for details) Version 3.0.0 - 2013-10-21 * Bug fixes (see mercurial logs for details) Version 2.8.0 - 2013-04-22 * Bug fixes (see mercurial logs for details) * Filter action based on usage "dashboard" Version 2.6.0 - 2012-10-22 * Bug fixes (see mercurial logs for details) Version 2.4.0 - 2012-04-23 * Bug fixes (see mercurial logs for details) Version 2.2.0 - 2011-10-24 * Bug fixes (see mercurial logs for details) Version 2.0.0 - 2011-04-26 * Bug fixes (see mercurial logs for details) Version 1.8.0 - 2010-11-01 * Bug fixes (see mercurial logs for details) * Remove required on dashboard_layout to allow XML user creation Version 1.6.0 - 2010-05-09 * Bug fixes (see mercurial logs for details) Version 1.4.0 - 2010-03-11 * Initial release trytond_dashboard-5.0.2/COPYRIGHT0000644000175000017500000000133013525751531016037 0ustar cedced00000000000000Copyright (C) 2009-2019 Cédric Krier. Copyright (C) 2009-2013 Bertrand Chenal. Copyright (C) 2009-2019 B2CK SPRL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . trytond_dashboard-5.0.2/res.py0000644000175000017500000000164413524050553015712 0ustar cedced00000000000000# This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. from trytond.model import fields from trytond.pool import PoolMeta __all__ = ['User'] class User(metaclass=PoolMeta): __name__ = "res.user" dashboard_layout = fields.Selection([ ('square', 'Square'), ('stack_right', 'Stack Right'), ('stack_left', 'Stack Left'), ('stack_top', 'Stack Top'), ('stack_bottom', 'Stack Bottom'), ], string='Dashboard Layout') dashboard_actions = fields.One2Many('dashboard.action', 'user', 'Dashboard Actions') @classmethod def __setup__(cls): super(User, cls).__setup__() cls._preferences_fields += [ 'dashboard_layout', 'dashboard_actions', ] @staticmethod def default_dashboard_layout(): return 'square' trytond_dashboard-5.0.2/setup.cfg0000644000175000017500000000004613525751533016372 0ustar cedced00000000000000[egg_info] tag_build = tag_date = 0 trytond_dashboard-5.0.2/PKG-INFO0000644000175000017500000000477613525751533015664 0ustar cedced00000000000000Metadata-Version: 1.2 Name: trytond_dashboard Version: 5.0.2 Summary: Tryton module for dashboard Home-page: http://www.tryton.org/ Author: Tryton Author-email: issue_tracker@tryton.org License: GPL-3 Download-URL: http://downloads.tryton.org/5.0/ Description: trytond_dashboard ================= The dashboard module of the Tryton application platform. Installing ---------- See INSTALL Support ------- If you encounter any problems with Tryton, please don't hesitate to ask questions on the Tryton bug tracker, mailing list, wiki or IRC channel: http://bugs.tryton.org/ http://groups.tryton.org/ http://wiki.tryton.org/ irc://irc.freenode.net/tryton License ------- See LICENSE Copyright --------- See COPYRIGHT For more information please visit the Tryton web site: http://www.tryton.org/ Keywords: tryton dashboard Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Plugins Classifier: Framework :: Tryton Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Legal Industry Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Classifier: Natural Language :: Bulgarian Classifier: Natural Language :: Catalan Classifier: Natural Language :: Chinese (Simplified) Classifier: Natural Language :: Czech Classifier: Natural Language :: Dutch Classifier: Natural Language :: English Classifier: Natural Language :: French Classifier: Natural Language :: German Classifier: Natural Language :: Hungarian Classifier: Natural Language :: Italian Classifier: Natural Language :: Persian Classifier: Natural Language :: Polish Classifier: Natural Language :: Portuguese (Brazilian) Classifier: Natural Language :: Russian Classifier: Natural Language :: Slovenian Classifier: Natural Language :: Spanish Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Office/Business Requires-Python: >=3.4 trytond_dashboard-5.0.2/ir.py0000644000175000017500000001125213524050553015527 0ustar cedced00000000000000# This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. import math from lxml import etree from trytond.transaction import Transaction from trytond.cache import Cache from trytond.pool import Pool, PoolMeta __all__ = ['View'] class View(metaclass=PoolMeta): __name__ = 'ir.ui.view' _dashboard_cache = Cache('ir.ui.view.dashboard_id') @staticmethod def dashboard_id(): ''' Return the database id of view_dashboard ''' ModelData = Pool().get('ir.model.data') models_data = ModelData.search([ ('fs_id', '=', 'view_dashboard'), ('module', '=', 'dashboard'), ], limit=1) if not models_data: return 0 model_data, = models_data return model_data.db_id @staticmethod def _dashboard_element_action(action): ''' Return etree Element for the given dashboard action. ''' return etree.Element('action', { 'name': str(action.act_window.id), }) @classmethod def dashboard_view(cls, arch): ''' Add action to view arch of dashboard ''' User = Pool().get('res.user') tree = etree.fromstring(arch) root = tree.getroottree().getroot() user = User(Transaction().user) if user.dashboard_layout == 'square': root.set('col', str(int(math.ceil(math.sqrt( len(user.dashboard_actions)))))) for action in user.dashboard_actions: root.append(cls._dashboard_element_action(action)) elif user.dashboard_layout == 'stack_right': group = None root.set('col', '2') for action in user.dashboard_actions: element = cls._dashboard_element_action(action) if group is None: root.append(element) group = etree.Element('group', { 'col': '1', 'yexpand': '1', 'yfill': '1', }) root.append(group) else: group.append(element) elif user.dashboard_layout == 'stack_left': root.set('col', '2') group = etree.Element('group', { 'col': '1', 'yexpand': '1', 'yfill': '1', }) root.append(group) first = True for action in user.dashboard_actions: element = cls._dashboard_element_action(action) if first: first = False root.append(element) else: group.append(element) elif user.dashboard_layout == 'stack_top': root.set('col', '1') group = etree.Element('group', { 'col': str(len(user.dashboard_actions) - 1), 'xexpand': '1', }) root.append(group) first = True for action in user.dashboard_actions: element = cls._dashboard_element_action(action) if first: first = False root.append(element) else: group.append(element) elif user.dashboard_layout == 'stack_bottom': root.set('col', '1') group = etree.Element('group', { 'col': str(len(user.dashboard_actions) - 1), 'xexpand': '1', }) first = True for action in user.dashboard_actions: element = cls._dashboard_element_action(action) if first: first = False root.append(element) else: group.append(element) root.append(group) arch = etree.tostring(tree, encoding='utf-8').decode('utf-8') return arch @classmethod def read(cls, ids, fields_names=None): res = super(View, cls).read(ids, fields_names=fields_names) if Transaction().user == 0: return res dashboard_id = cls.dashboard_id() if not dashboard_id: # Restart the cache cls._dashboard_cache.clear() if fields_names is None \ or 'arch' in fields_names: if dashboard_id in ids: for res2 in res: if res2['id'] == dashboard_id: res2['arch'] = cls.dashboard_view(res2['arch']) return res trytond_dashboard-5.0.2/README0000644000175000017500000000105213354423125015420 0ustar cedced00000000000000trytond_dashboard ================= The dashboard module of the Tryton application platform. Installing ---------- See INSTALL Support ------- If you encounter any problems with Tryton, please don't hesitate to ask questions on the Tryton bug tracker, mailing list, wiki or IRC channel: http://bugs.tryton.org/ http://groups.tryton.org/ http://wiki.tryton.org/ irc://irc.freenode.net/tryton License ------- See LICENSE Copyright --------- See COPYRIGHT For more information please visit the Tryton web site: http://www.tryton.org/ trytond_dashboard-5.0.2/locale/0000755000175000017500000000000013525751533016010 5ustar cedced00000000000000trytond_dashboard-5.0.2/locale/es.po0000644000175000017500000000375113524050553016756 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Acción" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Fecha de creación" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Usuario de creación" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Nombre del registro" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Secuencia" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Usuario" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Fecha de modificación" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Usuario de modificación" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Acciones del escritorio" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Organización del escritorio" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Acción del escritorio" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Escritorio" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Escritorio" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Ajustado" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "De arriba a abajo" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "De derecha a izquierda" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "De izquierda a derecha" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "De abajo a arriba" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Escritorio" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Acción del escritorio" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Acciones del escritorio" trytond_dashboard-5.0.2/locale/cs.po0000644000175000017500000000303013524050553016742 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "" #, fuzzy msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" trytond_dashboard-5.0.2/locale/de.po0000644000175000017500000000364513524050553016741 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Aktion" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Erstellungsdatum" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Erstellt durch" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Bezeichnung des Datensatzes" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Reihenfolge" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Benutzer" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Zuletzt geändert" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Letzte Änderung durch" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Dashboard Aktionen" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Dashboard Anordnung" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Dashboard Aktion" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Rechtecke" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Stapel unten" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Stapel links" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Stapel rechts" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Stapel oben" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Dashboard Aktion" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Dashboard Aktionen" trytond_dashboard-5.0.2/locale/sl.po0000644000175000017500000000362213524050553016762 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Ukrep" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Izdelano" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Izdelal" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Ime" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Zap.št." msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Uporabnik" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Zapisano" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Zapisal" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Ukrepi delovne table" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Razporeditev delovne table" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Ukrep delovne table" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Kvadrat" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Zloženo spodaj" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Zloženo levo" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Zloženo desno" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Zloženo na vrhu" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Delovna tabla" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Ukrep delovne table" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Ukrepi delovne table" trytond_dashboard-5.0.2/locale/lt.po0000644000175000017500000000303013524050553016754 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "" #, fuzzy msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" trytond_dashboard-5.0.2/locale/it_IT.po0000644000175000017500000000330413524050553017351 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Azione" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "creato il" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "creato il" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Sequenza" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Utente" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "modificato il" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "modificato da" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "azioni dashboard" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "layout dashboard" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "azione dashboard" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Quadrato" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "fondo della lista" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "lista sinistra" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "lista destra" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "cima della lista" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" trytond_dashboard-5.0.2/locale/ja_JP.po0000644000175000017500000000303013524050553017320 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "" #, fuzzy msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" trytond_dashboard-5.0.2/locale/fa.po0000644000175000017500000000351513524050553016733 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "اقدام" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "تاریخ ایجاد" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "کاربر ایجاد کننده" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "شناسه" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "نام پرونده" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "ادامه" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "کاربر" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "تاریخ نوشته" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "نوشته کاربر" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "اقدامات میزکار" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "چیدمان میزکار" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "اقدام میزکار" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "ميزكار" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "ميزكار" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "چهارگوش" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "قفسه پایین" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "قفسه چپ" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "قفسه راست" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "قفسه بالا" msgctxt "view:res.user:" msgid "Dashboard" msgstr "ميزكار" trytond_dashboard-5.0.2/locale/bg.po0000644000175000017500000000422413524050553016733 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Действие" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Създадено на" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Създадено от" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Последователност" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Потребител" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Променено на" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Променено от" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Действия на табло" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Подреждане на табло" #, fuzzy msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Действие на таблото" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Каре" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Подравнени отдолу" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Подарнение отляво" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Подравнение отдясно" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Подравнени отгоре" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Табло" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Действие на таблото" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Действия на табло" trytond_dashboard-5.0.2/locale/hu_HU.po0000644000175000017500000000332513524050553017354 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" #, fuzzy msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Művelet" #, fuzzy msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Létrehozás détuma" #, fuzzy msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Által létrehozva " #, fuzzy msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Számkör" #, fuzzy msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Felhasználó" #, fuzzy msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "utolsó módosítás dátuma" #, fuzzy msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Által módosítva" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "" #, fuzzy msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" trytond_dashboard-5.0.2/locale/es_419.po0000644000175000017500000000324113524050553017345 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "" #, fuzzy msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Acción del panel de control" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Organización del panel de control" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Acción del panel de control" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Panel de control" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Panel de control" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Cuadrado" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Panel de control" trytond_dashboard-5.0.2/locale/nl.po0000644000175000017500000000363613524050553016762 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Actie" #, fuzzy msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Datum" #, fuzzy msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Gebruiker" #, fuzzy msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Reeks" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Gebruiker" #, fuzzy msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Schrijfdatum" #, fuzzy msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Gebruiker" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Prikbord acties" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Prikbord indeling" #, fuzzy msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Prikbord actie" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Rechthoek" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Stapel onder" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Stapel links" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Stapel rechts" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Stapel boven" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Prikbord" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Prikbord actie" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Prikbord acties" trytond_dashboard-5.0.2/locale/pt_BR.po0000644000175000017500000000365213524050553017355 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Ação" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Data de Criação" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Criado por" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Nome do Registro" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Sequência" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Usuário" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Data de Edição" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Editado por" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Ações do Painel" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Layout do Painel" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Ação do Painel" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Quadrado" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Empilhar Embaixo" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Empilhar à Esquerda" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Empilhar à Direita" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Empilhar no Topo" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Painel" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Ação do Painel" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Ações do Painel" trytond_dashboard-5.0.2/locale/zh_CN.po0000644000175000017500000000325113524050553017343 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" #, fuzzy msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "操作" #, fuzzy msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "创建日期:" #, fuzzy msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "添加用户" #, fuzzy msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "编号" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "序列" #, fuzzy msgctxt "field:dashboard.action,user:" msgid "User" msgstr "用户" #, fuzzy msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "写入日期" #, fuzzy msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "写入帐号" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "" #, fuzzy msgctxt "view:res.user:" msgid "Dashboard" msgstr "Dashboard" trytond_dashboard-5.0.2/locale/fr.po0000644000175000017500000000370313524050553016753 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Action" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Date de création" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Créé par" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Nom de l'enregistrement" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Séquence" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Utilisateur" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Date de mise à jour" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Mis à jour par" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Actions tableau de bord" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Mise en page de tableau de bord" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Action tableau de bord" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Tableau de bord" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Tableau de bord" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Carré" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Pile bas" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Pile gauche" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Pile droite" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Pile haut" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Tableau de bord" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Action tableau de bord" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Actions tableau de bord" trytond_dashboard-5.0.2/locale/pl.po0000644000175000017500000000327313524050553016761 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Akcja" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Data utworzenia" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Utworzył" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Nazwa rekordu" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Kolejność" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Użytkownik" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Data zapisu" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Zapisał" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Akcje pulpitu" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Układ pulpitu" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Akcja pulpitu" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Pulpit" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Pulpit" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Kwadrat" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Stos u dołu" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Stos z lewej" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Stos z prawej" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Stos u góry" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Pulpit" trytond_dashboard-5.0.2/locale/lo.po0000644000175000017500000000452213524050553016756 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "ການປະຕິບັດ" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "ສ້າງວັນທີ" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "ສ້າງຜູ້ໃຊ້" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ເລກລໍາດັບ" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "ລໍາດັບ" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "ຜູ້ໃຊ້" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "ຂຽນວັນທີ" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "ຂຽນຜູ້ໃຊ້" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "ການປະຕິບັດກະດານບັນຊາ" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "ໂຄງກະດານບັນຊາ" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "ການປະຕິບັດກະດານບັນຊາ" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "ສີ່ຫຼ່ຽມ" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "ແຖວຂໍ້ມູນລຸ່ມ" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "ແຖວຂໍ້ມູນຊ້າຍ" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "ແຖວຂໍ້ມູນຂວາ" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "ແຖວຂໍ້ມູນເທິງ" msgctxt "view:res.user:" msgid "Dashboard" msgstr "ກະດານບັນຊາ" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "ການປະຕິບັດກະດານບັນຊາ" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "ການປະຕິບັດກະດານບັນຊາ" trytond_dashboard-5.0.2/locale/ca.po0000644000175000017500000000372113524050553016727 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Acció" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Data de creació" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Usuari de creació" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "Nom del registre" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Seqüència" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Usuari" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Data de modificació" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Usuari de modificació" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Accions de l'escriptori" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Organització de l'escriptori" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Acció de l'escriptori" msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Escriptori" msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Escriptori" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Ajustat" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "De dalt a baix" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "De dreta a esquerra" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "D'esquerra a dreta" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "De baix a dalt" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Escriptori" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Acció de l'escriptori" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Accions de l'escriptori" trytond_dashboard-5.0.2/locale/ru.po0000644000175000017500000000426013524050553016771 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:dashboard.action,act_window:" msgid "Action" msgstr "Действие" msgctxt "field:dashboard.action,create_date:" msgid "Create Date" msgstr "Дата создания" msgctxt "field:dashboard.action,create_uid:" msgid "Create User" msgstr "Создано пользователем" msgctxt "field:dashboard.action,id:" msgid "ID" msgstr "ID" msgctxt "field:dashboard.action,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:dashboard.action,sequence:" msgid "Sequence" msgstr "Нумерация" msgctxt "field:dashboard.action,user:" msgid "User" msgstr "Пользователь" msgctxt "field:dashboard.action,write_date:" msgid "Write Date" msgstr "Дата изменения" msgctxt "field:dashboard.action,write_uid:" msgid "Write User" msgstr "Изменено пользователем" msgctxt "field:res.user,dashboard_actions:" msgid "Dashboard Actions" msgstr "Панель действий" msgctxt "field:res.user,dashboard_layout:" msgid "Dashboard Layout" msgstr "Расположение на панели" msgctxt "model:dashboard.action,name:" msgid "Dashboard Action" msgstr "Панель действия" #, fuzzy msgctxt "model:ir.action,name:act_dashboard" msgid "Dashboard" msgstr "Dashboard" #, fuzzy msgctxt "model:ir.ui.menu,name:menu_dashboard" msgid "Dashboard" msgstr "Dashboard" msgctxt "selection:res.user,dashboard_layout:" msgid "Square" msgstr "Квадрат" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Bottom" msgstr "Выровнять вниз" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Left" msgstr "Выровнять влево" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Right" msgstr "Выровнять вправо" msgctxt "selection:res.user,dashboard_layout:" msgid "Stack Top" msgstr "Выровнять вверх" msgctxt "view:res.user:" msgid "Dashboard" msgstr "Информационная панель" msgctxt "view:dashboard.action:" msgid "Dashboard Action" msgstr "Панель действия" msgctxt "view:dashboard.action:" msgid "Dashboard Actions" msgstr "Панель действий" trytond_dashboard-5.0.2/view/0000755000175000017500000000000013525751533015523 5ustar cedced00000000000000trytond_dashboard-5.0.2/view/user_form_preferences.xml0000644000175000017500000000102713354423125022620 0ustar cedced00000000000000 trytond_dashboard-5.0.2/view/user_form.xml0000644000175000017500000000102713354423125020237 0ustar cedced00000000000000 trytond_dashboard-5.0.2/view/action_tree_sequence.xml0000644000175000017500000000037013354423125022422 0ustar cedced00000000000000 trytond_dashboard-5.0.2/view/action_form.xml0000644000175000017500000000060613354423125020540 0ustar cedced00000000000000