Holger Brunn
10 years ago
44 changed files with 1209 additions and 0 deletions
-
15web_shortcuts/LICENSE
-
7web_shortcuts/README.rst
-
21web_shortcuts/__init__.py
-
37web_shortcuts/__openerp__.py
-
25web_shortcuts/i18n/ar.po
-
25web_shortcuts/i18n/bs.po
-
25web_shortcuts/i18n/cs.po
-
25web_shortcuts/i18n/da.po
-
25web_shortcuts/i18n/de.po
-
25web_shortcuts/i18n/el.po
-
25web_shortcuts/i18n/en_GB.po
-
25web_shortcuts/i18n/es.po
-
25web_shortcuts/i18n/fi.po
-
25web_shortcuts/i18n/fr.po
-
25web_shortcuts/i18n/gl.po
-
25web_shortcuts/i18n/hr.po
-
25web_shortcuts/i18n/hu.po
-
25web_shortcuts/i18n/it.po
-
25web_shortcuts/i18n/lt.po
-
25web_shortcuts/i18n/mk.po
-
25web_shortcuts/i18n/mn.po
-
25web_shortcuts/i18n/nl.po
-
25web_shortcuts/i18n/pl.po
-
25web_shortcuts/i18n/pt.po
-
25web_shortcuts/i18n/pt_BR.po
-
25web_shortcuts/i18n/ro.po
-
25web_shortcuts/i18n/ru.po
-
25web_shortcuts/i18n/sl.po
-
25web_shortcuts/i18n/sv.po
-
25web_shortcuts/i18n/th.po
-
25web_shortcuts/i18n/tr.po
-
25web_shortcuts/i18n/vi.po
-
24web_shortcuts/i18n/web_shortcuts.pot
-
25web_shortcuts/i18n/zh_CN.po
-
25web_shortcuts/i18n/zh_TW.po
-
30web_shortcuts/model/__init__.py
-
52web_shortcuts/model/web_shortcut.py
-
2web_shortcuts/security/ir.model.access.csv
-
82web_shortcuts/static/src/css/web_shortcuts.css
-
BINweb_shortcuts/static/src/img/add-shortcut.png
-
BINweb_shortcuts/static/src/img/icon.png
-
150web_shortcuts/static/src/js/web_shortcuts.js
-
27web_shortcuts/static/src/xml/web_shortcuts.xml
-
12web_shortcuts/view/web_shortcuts.xml
@ -0,0 +1,15 @@ |
|||||
|
OpenERP, Open Source Management Solution |
||||
|
Copyright © 2010-2011 OpenERP SA (<http://openerp.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 Lice |
||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>. |
@ -0,0 +1,7 @@ |
|||||
|
Enable shortcuts feature in the web client. |
||||
|
=========================================== |
||||
|
|
||||
|
Add a Shortcut icon in the systray in order to access the user's shortcuts |
||||
|
(if any). |
||||
|
|
||||
|
Add a Shortcut icon besides the views title in order to add/remove a shortcut. |
@ -0,0 +1,21 @@ |
|||||
|
############################################################################## |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2010 OpenERP s.a. (<http://openerp.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/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
|
||||
|
from . import model |
@ -0,0 +1,37 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2010-2011 OpenERP s.a. (<http://openerp.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/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
{ |
||||
|
'name': 'Web Shortcuts', |
||||
|
'version': '1.0', |
||||
|
'category': 'Tools', |
||||
|
'author': 'OpenERP SA', |
||||
|
'website': 'http://openerp.com', |
||||
|
'depends': ['base'], |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'view/web_shortcuts.xml', |
||||
|
], |
||||
|
'qweb': ['static/src/xml/web_shortcuts.xml'], |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
||||
|
|
||||
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
@ -0,0 +1,25 @@ |
|||||
|
# Arabic translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-11-26 18:38+0000\n" |
||||
|
"Last-Translator: kifcaliph <Unknown>\n" |
||||
|
"Language-Team: Arabic <ar@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-27 05:39+0000\n" |
||||
|
"X-Generator: Launchpad (build 16845)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "إضافة / إزالة مختَصَر" |
@ -0,0 +1,25 @@ |
|||||
|
# Bosnian translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-10-26 01:19+0000\n" |
||||
|
"Last-Translator: Bosko Stojakovic <bluesoft83@gmail.com>\n" |
||||
|
"Language-Team: Bosnian <bs@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Dodaj / Ukloni pračicu..." |
@ -0,0 +1,25 @@ |
|||||
|
# Czech translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-02-20 13:43+0000\n" |
||||
|
"Last-Translator: Radomil Urbánek <radek@sluzebnik.cz>\n" |
||||
|
"Language-Team: Czech <cs@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Přidat / Odebrat zkratku..." |
@ -0,0 +1,25 @@ |
|||||
|
# Danish translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-09-15 20:22+0000\n" |
||||
|
"Last-Translator: Morten Schou <ms@msteknik.dk>\n" |
||||
|
"Language-Team: Danish <da@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Tilføj/fjern genvej ..." |
@ -0,0 +1,25 @@ |
|||||
|
# German translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n" |
||||
|
"Language-Team: German <de@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Hinzufügen/Entfernen Lesezeichen ..." |
@ -0,0 +1,25 @@ |
|||||
|
# Greek translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-09-30 20:14+0000\n" |
||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"Language-Team: Greek <el@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "" |
@ -0,0 +1,25 @@ |
|||||
|
# English (United Kingdom) translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-08-23 16:45+0000\n" |
||||
|
"Last-Translator: Andi Chandler <Unknown>\n" |
||||
|
"Language-Team: English (United Kingdom) <en_GB@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Add / Remove Shortcut..." |
@ -0,0 +1,25 @@ |
|||||
|
# Spanish translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Pedro Manuel Baeza <pedro.baeza@gmail.com>\n" |
||||
|
"Language-Team: Spanish <es@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Añadir / Eliminar acceso directo..." |
@ -0,0 +1,25 @@ |
|||||
|
# Finnish translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-11-08 21:06+0000\n" |
||||
|
"Last-Translator: Harri Luuppala <Unknown>\n" |
||||
|
"Language-Team: Finnish <fi@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Lisää / Poista pikavalinta..." |
@ -0,0 +1,25 @@ |
|||||
|
# French translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: WANTELLET Sylvain <Swantellet@tetra-info.com>\n" |
||||
|
"Language-Team: French <fr@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Ajouter / supprimer un raccourci..." |
@ -0,0 +1,25 @@ |
|||||
|
# Galician translation for openobject-addons |
||||
|
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2014-02-05 16:52+0000\n" |
||||
|
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>\n" |
||||
|
"Language-Team: Galician <gl@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2014-02-06 06:25+0000\n" |
||||
|
"X-Generator: Launchpad (build 16916)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Engadir / Eliminar atallo..." |
@ -0,0 +1,25 @@ |
|||||
|
# Croatian translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Goran Kliska <gkliska@gmail.com>\n" |
||||
|
"Language-Team: Croatian <hr@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Dodaj / ukloni prečac..." |
@ -0,0 +1,25 @@ |
|||||
|
# Hungarian translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-01-04 12:01+0000\n" |
||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"Language-Team: Hungarian <hu@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Billentyűkombináció hozzáadása/eltávolítása" |
@ -0,0 +1,25 @@ |
|||||
|
# Italian translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Davide Corio - agilebg.com <davide.corio@agilebg.com>\n" |
||||
|
"Language-Team: Italian <it@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Aggiungi / Rimuovi Scorciatoia..." |
@ -0,0 +1,25 @@ |
|||||
|
# Lithuanian translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-04-24 18:29+0000\n" |
||||
|
"Last-Translator: Giedrius Slavinskas - inovera.lt <giedrius@inovera.lt>\n" |
||||
|
"Language-Team: Lithuanian <lt@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Pridėti / pašalinti trumpinį..." |
@ -0,0 +1,25 @@ |
|||||
|
# Macedonian translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-03-01 14:20+0000\n" |
||||
|
"Last-Translator: Sofce Dimitrijeva <Unknown>\n" |
||||
|
"Language-Team: Macedonian <mk@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Додади / Отстрани кратенка" |
@ -0,0 +1,25 @@ |
|||||
|
# Mongolian translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-02-07 11:26+0000\n" |
||||
|
"Last-Translator: Tenuun Khangaitan <tenuun.khangaitan@gmail.com>\n" |
||||
|
"Language-Team: Mongolian <mn@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Шуут холбоосыг Нэмэх / Устгах ..." |
@ -0,0 +1,25 @@ |
|||||
|
# Dutch translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Erwin van der Ploeg (Endian Solutions) <Unknown>\n" |
||||
|
"Language-Team: Dutch <nl@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Toevoegen/verwijderen snelkoppeling" |
@ -0,0 +1,25 @@ |
|||||
|
# Polish translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) <grzegorz@openglobe.pl>\n" |
||||
|
"Language-Team: Polish <pl@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Dodaj / Usuń skrót" |
@ -0,0 +1,25 @@ |
|||||
|
# Portuguese translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Andrei Talpa (multibase.pt) <andrei.talpa@multibase.pt>\n" |
||||
|
"Language-Team: Portuguese <pt@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Adicionar / Remover atalho..." |
@ -0,0 +1,25 @@ |
|||||
|
# Brazilian Portuguese translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-07-20 15:14+0000\n" |
||||
|
"Last-Translator: Claudio de Araujo Santos <claudioaraujosantos@gmail.com>\n" |
||||
|
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Adicionar / Remover atalho ..." |
@ -0,0 +1,25 @@ |
|||||
|
# Romanian translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-01-11 12:29+0000\n" |
||||
|
"Last-Translator: ERPSystems.ro <Unknown>\n" |
||||
|
"Language-Team: Romanian <ro@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Adauga / Sterge Shortcut..." |
@ -0,0 +1,25 @@ |
|||||
|
# Russian translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-25 12:18+0000\n" |
||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"Language-Team: Russian <ru@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Добавить / Удалить ярлык..." |
@ -0,0 +1,25 @@ |
|||||
|
# Slovenian translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2012-12-21 23:00+0000\n" |
||||
|
"Last-Translator: Dusan Laznik <laznik@mentis.si>\n" |
||||
|
"Language-Team: Slovenian <sl@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Dodaj / Odstrani bližnjico..." |
@ -0,0 +1,25 @@ |
|||||
|
# Swedish translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-01-26 15:07+0000\n" |
||||
|
"Last-Translator: Mikael Dúi Bolinder <dui@outlook.com>\n" |
||||
|
"Language-Team: Swedish <sv@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Lägg till/ta bort genväg..." |
@ -0,0 +1,25 @@ |
|||||
|
# Thai translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-06-17 05:48+0000\n" |
||||
|
"Last-Translator: Sumonchai ( เหลา ) <sumonchai@gmail.com>\n" |
||||
|
"Language-Team: Thai <th@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "เพิ่ม / ลบ ทางลัด ..." |
@ -0,0 +1,25 @@ |
|||||
|
# Turkish translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-02-06 20:19+0000\n" |
||||
|
"Last-Translator: Ahmet Altınışık <Unknown>\n" |
||||
|
"Language-Team: Turkish <tr@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Kısayol Ekle/Kaldır..." |
@ -0,0 +1,25 @@ |
|||||
|
# Vietnamese translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-06-27 16:15+0000\n" |
||||
|
"Last-Translator: Hung Tran <vanda6688@yahoo.com>\n" |
||||
|
"Language-Team: Vietnamese <vi@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "Thêm / Xóa đường dẫn ...." |
@ -0,0 +1,24 @@ |
|||||
|
# Translation of OpenERP Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * web_shortcuts |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: OpenERP Server 7.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-06-07 19:37+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_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "" |
||||
|
|
@ -0,0 +1,25 @@ |
|||||
|
# Chinese (Simplified) translation for openobject-addons |
||||
|
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-07-24 13:35+0000\n" |
||||
|
"Last-Translator: 盈通 ccdos <ccdos@intoerp.com>\n" |
||||
|
"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" |
||||
|
"X-Generator: Launchpad (build 16831)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "添加/删除快捷方式..." |
@ -0,0 +1,25 @@ |
|||||
|
# Chinese (Traditional) translation for openobject-addons |
||||
|
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 |
||||
|
# This file is distributed under the same license as the openobject-addons package. |
||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: openobject-addons\n" |
||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" |
||||
|
"POT-Creation-Date: 2013-06-07 19:37+0000\n" |
||||
|
"PO-Revision-Date: 2013-12-29 17:05+0000\n" |
||||
|
"Last-Translator: Andy Cheng <andy@dobtor.com>\n" |
||||
|
"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"X-Launchpad-Export-Date: 2013-12-30 05:07+0000\n" |
||||
|
"X-Generator: Launchpad (build 16877)\n" |
||||
|
|
||||
|
#. module: web_shortcuts |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_shortcuts/static/src/xml/web_shortcuts.xml:21 |
||||
|
#, python-format |
||||
|
msgid "Add / Remove Shortcut..." |
||||
|
msgstr "新增/移除捷徑..." |
@ -0,0 +1,30 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# |
||||
|
# |
||||
|
# Authors: Adrien Peiffer |
||||
|
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu) |
||||
|
# All Rights Reserved |
||||
|
# |
||||
|
# WARNING: This program as such is intended to be used by professional |
||||
|
# programmers who take the whole responsibility of assessing all potential |
||||
|
# consequences resulting from its eventual inadequacies and bugs. |
||||
|
# End users who are looking for a ready-to-use solution with commercial |
||||
|
# guarantees and support are strongly advised to contact a Free Software |
||||
|
# Service Company. |
||||
|
# |
||||
|
# 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/>. |
||||
|
# |
||||
|
# |
||||
|
|
||||
|
from . import web_shortcut |
@ -0,0 +1,52 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2004-today OpenERP SA (<http://www.openerp.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/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
|
||||
|
from openerp import models, fields, api |
||||
|
|
||||
|
|
||||
|
class web_shortcut(models.Model): |
||||
|
_name = 'web.shortcut' |
||||
|
|
||||
|
name = fields.Char('Shortcut Name', size=64) |
||||
|
menu_id = fields.Many2one('ir.ui.menu') |
||||
|
user_id = fields.Many2one('res.users', 'User Ref.', required=True, |
||||
|
ondelete='cascade', select=True, |
||||
|
default=lambda obj, cr, uid, context: uid) |
||||
|
|
||||
|
_sql_constraints = [ |
||||
|
('shortcut_unique', 'unique(menu_id,user_id)', |
||||
|
'Shortcut for this menu already exists!'), |
||||
|
] |
||||
|
|
||||
|
@api.model |
||||
|
def get_user_shortcuts(self, user_id): |
||||
|
shortcuts = self.search([('user_id', '=', user_id)]) |
||||
|
results = shortcuts.read(['menu_id']) |
||||
|
ir_ui_menu_obj = self.env['ir.ui.menu'] |
||||
|
menus = ir_ui_menu_obj.search([('id', 'in', [x['menu_id'][0] |
||||
|
for x in results])]) |
||||
|
name_map = dict(menus.name_get()) |
||||
|
# Make sure to return only shortcuts pointing to existing menu items. |
||||
|
filtered_results = filter(lambda result: result['menu_id'][0] in |
||||
|
name_map, results) |
||||
|
for result in filtered_results: |
||||
|
result.update(name=name_map[result['menu_id'][0]]) |
||||
|
return filtered_results |
@ -0,0 +1,2 @@ |
|||||
|
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink |
||||
|
access_web_shortcut,access_web_shortcut,model_web_shortcut,,1,1,1,1 |
@ -0,0 +1,82 @@ |
|||||
|
/* Shortcuts*/ |
||||
|
.oe_systray_shortcuts .oe_star_off { |
||||
|
color: #eee; |
||||
|
} |
||||
|
.oe_shortcuts_toggle { |
||||
|
height: 20px; |
||||
|
margin-top: 3px; |
||||
|
padding: 0; |
||||
|
width: 24px; |
||||
|
cursor: pointer; |
||||
|
display: block; |
||||
|
background: url(/web/static/src/img/add-shortcut.png) no-repeat center center; |
||||
|
float: left; |
||||
|
} |
||||
|
.oe_shortcuts_remove{ |
||||
|
background: url(/web/static/src/img/remove-shortcut.png) no-repeat center center; |
||||
|
} |
||||
|
.oe_shortcuts { |
||||
|
position: absolute; |
||||
|
margin: 0; |
||||
|
padding: 6px 15px; |
||||
|
top: 37px; |
||||
|
left: 197px; |
||||
|
right: 0; |
||||
|
height: 17px; |
||||
|
line-height: 1.2; |
||||
|
} |
||||
|
.oe_shortcuts ul { |
||||
|
display: block; |
||||
|
overflow: hidden; |
||||
|
list-style: none; |
||||
|
white-space: nowrap; |
||||
|
padding: 0; |
||||
|
margin: 0; |
||||
|
} |
||||
|
.oe_shortcuts li { |
||||
|
cursor: pointer; |
||||
|
display: -moz-inline-stack; |
||||
|
display: inline-block; |
||||
|
display: inline; /*IE7 */ |
||||
|
color: #fff; |
||||
|
text-align: center; |
||||
|
border-left: 1px solid #909090; |
||||
|
padding: 0 4px; |
||||
|
font-size: 80%; |
||||
|
font-weight: normal; |
||||
|
vertical-align: top; |
||||
|
} |
||||
|
|
||||
|
.oe_shortcuts li:hover { |
||||
|
background-color: #666; |
||||
|
} |
||||
|
.oe_shortcuts li:first-child { |
||||
|
border-left: none; |
||||
|
padding-left: 0; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
.openerp .oe_topbar .oe_topbar_item { |
||||
|
display: block; |
||||
|
padding: 5px 10px 7px; |
||||
|
line-height: 20px; |
||||
|
height: 20px; |
||||
|
text-decoration: none; |
||||
|
color: #eeeeee; |
||||
|
vertical-align: top; |
||||
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); |
||||
|
-webkit-transition: all 0.2s ease-out; |
||||
|
-moz-transition: all 0.2s ease-out; |
||||
|
-ms-transition: all 0.2s ease-out; |
||||
|
-o-transition: all 0.2s ease-out; |
||||
|
transition: all 0.2s ease-out; |
||||
|
} |
||||
|
.openerp .oe_topbar .oe_topbar_item:hover { |
||||
|
background: rgba(0, 0, 0, 0.2); |
||||
|
text-shadow: black 0px 0px 3px; |
||||
|
color: white; |
||||
|
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset; |
||||
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset; |
||||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset; |
||||
|
} |
||||
|
|
After Width: 16 | Height: 16 | Size: 337 B |
After Width: 80 | Height: 80 | Size: 5.2 KiB |
@ -0,0 +1,150 @@ |
|||||
|
/*############################################################################ |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2011-2012 OpenERP SA (<http://openerp.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_shortcuts = function (instance) { |
||||
|
|
||||
|
var QWeb = instance.web.qweb, |
||||
|
_t = instance.web._t; |
||||
|
|
||||
|
instance.web_shortcuts.Shortcuts = instance.web.Widget.extend({ |
||||
|
template: 'Systray.Shortcuts', |
||||
|
|
||||
|
init: function() { |
||||
|
this._super(); |
||||
|
this.on('load', this, this.load); |
||||
|
this.on('add', this, this.add); |
||||
|
this.on('display', this, this.display); |
||||
|
this.on('remove', this, this.remove); |
||||
|
this.on('click', this, this.click); |
||||
|
this.model = new instance.web.Model('web.shortcut'); |
||||
|
}, |
||||
|
start: function() { |
||||
|
var self = this; |
||||
|
this._super(); |
||||
|
this.trigger('load'); |
||||
|
this.$el.on('click', '.oe_systray_shortcuts_items a', function() { |
||||
|
self.trigger('click', $(this)); |
||||
|
}); |
||||
|
}, |
||||
|
load: function() { |
||||
|
var self = this; |
||||
|
this.$el.find('.oe_systray_shortcuts_items').empty(); |
||||
|
return this.model.call('get_user_shortcuts', [ |
||||
|
instance.session.uid, |
||||
|
instance.web.pyeval.eval('context', {}) |
||||
|
]).done(function(shortcuts) { |
||||
|
_.each(shortcuts, function(sc) { |
||||
|
self.trigger('display', sc); |
||||
|
}); |
||||
|
}); |
||||
|
}, |
||||
|
add: function (sc) { |
||||
|
var self = this; |
||||
|
this.model.call('create', [sc]).then(function(out){ |
||||
|
self.trigger('load'); |
||||
|
}); |
||||
|
}, |
||||
|
display: function(sc) { |
||||
|
var self = this; |
||||
|
this.$el.find('.oe_systray_shortcuts_items').append(); |
||||
|
var $sc = $(QWeb.render('Systray.Shortcuts.Item', {'shortcut': sc})); |
||||
|
$sc.appendTo(self.$el.find('.oe_systray_shortcuts_items')); |
||||
|
}, |
||||
|
remove: function (menu_id) { |
||||
|
var menu_id = this.session.active_id; |
||||
|
var $shortcut = this.$el.find('.oe_systray_shortcuts_items li a[data-id=' + menu_id + ']'); |
||||
|
var shortcut_id = $shortcut.data('shortcut-id'); |
||||
|
$shortcut.remove(); |
||||
|
this.model.call('unlink', [shortcut_id]); |
||||
|
}, |
||||
|
click: function($link) { |
||||
|
var self = this, |
||||
|
id = $link.data('id'); |
||||
|
self.session.active_id = id; |
||||
|
// TODO: Use do_action({menu_id: id, type: 'ir.actions.menu'})
|
||||
|
new instance.web.Model('ir.ui.menu').query(['action']).filter([['id', '=', id]]).context(null).all().then(function(menu) { |
||||
|
var action_str = menu[0].action; |
||||
|
var action_str_parts = action_str.split(','); |
||||
|
var action_id = parseInt(action_str_parts[1]) |
||||
|
self.rpc('/web/action/load', {'action_id': action_id}).done(function(action) { |
||||
|
instance.webclient.on_menu_action({action_id: action.id}); |
||||
|
}); |
||||
|
}); |
||||
|
this.$el.find('.oe_systray_shortcuts').trigger('mouseout'); |
||||
|
}, |
||||
|
has: function(menu_id) { |
||||
|
return !!this.$el.find('a[data-id=' + menu_id + ']').length; |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
instance.web.UserMenu.include({ |
||||
|
do_update: function() { |
||||
|
var self = this; |
||||
|
this._super.apply(this, arguments); |
||||
|
this.update_promise.done(function() { |
||||
|
if (self.shortcuts) { |
||||
|
self.shortcuts.trigger('load'); |
||||
|
} else { |
||||
|
self.shortcuts = new instance.web_shortcuts.Shortcuts(self); |
||||
|
self.shortcuts.appendTo(instance.webclient.$el.find('.oe_systray')); |
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
|
}); |
||||
|
|
||||
|
instance.web.ViewManagerAction.include({ |
||||
|
switch_mode: function (view_type, no_store) { |
||||
|
var self = this; |
||||
|
this._super.apply(this, arguments).done(function() { |
||||
|
self.shortcut_check(self.views[view_type]); |
||||
|
}); |
||||
|
}, |
||||
|
shortcut_check : function(view) { |
||||
|
var self = this; |
||||
|
var shortcuts_menu = instance.webclient.user_menu.shortcuts; |
||||
|
var grandparent = this.getParent() && this.getParent().getParent(); |
||||
|
// display shortcuts if on the first view for the action
|
||||
|
var $shortcut_toggle = this.$el.find('.oe_shortcuts_toggle'); |
||||
|
if (!this.action.name || |
||||
|
!(view.view_type === this.views_src[0].view_type |
||||
|
&& view.view_id === this.views_src[0].view_id)) { |
||||
|
$shortcut_toggle.hide(); |
||||
|
return; |
||||
|
} |
||||
|
// Anonymous users don't have user_menu
|
||||
|
if (shortcuts_menu) { |
||||
|
$shortcut_toggle.toggleClass('oe_shortcuts_remove', shortcuts_menu.has(self.session.active_id)); |
||||
|
$shortcut_toggle.unbind("click").click(function() { |
||||
|
if ($shortcut_toggle.hasClass("oe_shortcuts_remove")) { |
||||
|
shortcuts_menu.trigger('remove', self.session.active_id); |
||||
|
} else { |
||||
|
shortcuts_menu.trigger('add', { |
||||
|
'user_id': self.session.uid, |
||||
|
'menu_id': self.session.active_id, |
||||
|
'name': self.action.name |
||||
|
}); |
||||
|
} |
||||
|
$shortcut_toggle.toggleClass("oe_shortcuts_remove"); |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
}; |
@ -0,0 +1,27 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<!-- vim:fdl=1: |
||||
|
--> |
||||
|
<templates id="template" xml:space="preserve"> |
||||
|
<t t-name="Systray.Shortcuts"> |
||||
|
<li class="dropdown"> |
||||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
||||
|
<img src="/web_shortcuts/static/src/img/add-shortcut.png"/> |
||||
|
</a> |
||||
|
<ul class="oe_systray_shortcuts_items dropdown-menu"> |
||||
|
</ul> |
||||
|
</li> |
||||
|
</t> |
||||
|
<t t-name="Systray.Shortcuts.Item"> |
||||
|
<li> |
||||
|
<a href="#" t-att-data-id="shortcut.menu_id[0]" t-att-data-shortcut-id="shortcut.id"> |
||||
|
<t t-esc="shortcut.name"/> |
||||
|
</a> |
||||
|
</li> |
||||
|
</t> |
||||
|
<t t-extend="ViewManagerAction"> |
||||
|
<t t-jquery="h2.oe_view_title" t-operation="prepend"> |
||||
|
<a t-if="widget.flags.display_title !== false" class="oe_shortcuts_toggle" title="Add / Remove Shortcut..." |
||||
|
href="javascript: void(0)"> </a> |
||||
|
</t> |
||||
|
</t> |
||||
|
</templates> |
@ -0,0 +1,12 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
<!-- Include JS file for the custom view to select domain from filters --> |
||||
|
<template id="assets_backend" name="filter_selection" inherit_id="web.assets_backend"> |
||||
|
<xpath expr="." position="inside"> |
||||
|
<link rel="stylesheet" href="/web_shortcuts/static/src/css/web_shortcuts.css"/> |
||||
|
<script type="text/javascript" src="/web_shortcuts/static/src/js/web_shortcuts.js"></script> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue