diff --git a/README.md b/README.md index 7315245d0a0e..9ccaaf2cc7ff 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Available addons ---------------- addon | version | summary --- | --- | --- +[web_dialog_size](web_dialog_size/) | 10.0.1.0.0 | A module that lets the user expand a dialog box to the full screen width. [web_environment_ribbon](web_environment_ribbon/) | 10.0.1.0.0 | Web Environment Ribbon [web_export_view](web_export_view/) | 10.0.1.0.0 | Web Export Current View [web_favicon](web_favicon/) | 10.0.1.0.0 | Allows to set a custom shortcut icon (aka favicon) @@ -24,6 +25,7 @@ addon | version | summary [web_no_bubble](web_no_bubble/) | 10.0.1.0.0 | Remove the bubbles from the web interface [web_notify](web_notify/) | 10.0.1.0.0 | Send notification messages to user [web_responsive](web_responsive/) | 10.0.1.0.0 | It provides a mobile compliant interface for Odoo Community web +[web_searchbar_full_width](web_searchbar_full_width/) | 10.0.1.0.0 | Show search bar in full screen width [web_send_message_popup](web_send_message_popup/) | 10.0.1.0.0 | Web Send Message as Popup [web_sheet_full_width](web_sheet_full_width/) | 10.0.1.0.1 | Use the whole available screen width when displaying sheets [web_tree_image](web_tree_image/) | 10.0.1.1.0 | Show images in tree views @@ -46,7 +48,6 @@ addon | version | summary [web_context_in_colors](web_context_in_colors/) | 8.0.1.1.0 (unported) | Use the context in a tree view's colors and fonts attribute [web_dashboard_open_action](web_dashboard_open_action/) | 8.0.1.0.0 (unported) | Adds a button to open a dashboard in full mode [web_dashboard_tile](web_dashboard_tile/) | 8.0.1.0.0 (unported) | Add Tiles to Dashboard -[web_dialog_size](web_dialog_size/) | 9.0.1.0.0 (unported) | A module that lets the user expand a dialog box to the full screen width. [web_dom_model_classes](web_dom_model_classes/) | 8.0.1.0.0 (unported) | Allows small UI changes with simple CSS [web_duplicate_visibility](web_duplicate_visibility/) | 9.0.1.0.0 (unported) | Manage the duplicate button visibiliy [web_graph_improved](web_graph_improved/) | 8.0.0.1.0 (unported) | Improves graph views. @@ -63,7 +64,6 @@ addon | version | summary [web_readonly_bypass](web_readonly_bypass/) | 9.0.1.0.0 (unported) | Allow to save onchange modifications to readonly fields [web_recipients_uncheck](web_recipients_uncheck/) | 8.0.0.3.0 (unported) | Uncheck recipients on res.partner [web_search_alphabetic](web_search_alphabetic/) | 1.0 (unported) | Web Alphabetical Search -[web_searchbar_full_width](web_searchbar_full_width/) | 9.0.1.0.0 (unported) | Show search bar in full screen width [web_sheet_full_width_selective](web_sheet_full_width_selective/) | 8.0.0.1.0 (unported) | Show selected sheets with full width [web_shortcuts](web_shortcuts/) | 8.0.1.0.0 (unported) | Web Shortcuts [web_switch_company_warning](web_switch_company_warning/) | 8.0.0.1.0 (unported) | Show a warning if current company has been switched in another tab or window. diff --git a/setup/web_dialog_size/odoo/__init__.py b/setup/web_dialog_size/odoo/__init__.py new file mode 100644 index 000000000000..de40ea7ca058 --- /dev/null +++ b/setup/web_dialog_size/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_dialog_size/odoo/addons/__init__.py b/setup/web_dialog_size/odoo/addons/__init__.py new file mode 100644 index 000000000000..de40ea7ca058 --- /dev/null +++ b/setup/web_dialog_size/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_dialog_size/odoo/addons/web_dialog_size b/setup/web_dialog_size/odoo/addons/web_dialog_size new file mode 120000 index 000000000000..8dcc87d96565 --- /dev/null +++ b/setup/web_dialog_size/odoo/addons/web_dialog_size @@ -0,0 +1 @@ +../../../../web_dialog_size \ No newline at end of file diff --git a/setup/web_dialog_size/setup.py b/setup/web_dialog_size/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/web_dialog_size/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/web_searchbar_full_width/odoo/__init__.py b/setup/web_searchbar_full_width/odoo/__init__.py new file mode 100644 index 000000000000..de40ea7ca058 --- /dev/null +++ b/setup/web_searchbar_full_width/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_searchbar_full_width/odoo/addons/__init__.py b/setup/web_searchbar_full_width/odoo/addons/__init__.py new file mode 100644 index 000000000000..de40ea7ca058 --- /dev/null +++ b/setup/web_searchbar_full_width/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_searchbar_full_width/odoo/addons/web_searchbar_full_width b/setup/web_searchbar_full_width/odoo/addons/web_searchbar_full_width new file mode 120000 index 000000000000..0f78409fe153 --- /dev/null +++ b/setup/web_searchbar_full_width/odoo/addons/web_searchbar_full_width @@ -0,0 +1 @@ +../../../../web_searchbar_full_width \ No newline at end of file diff --git a/setup/web_searchbar_full_width/setup.py b/setup/web_searchbar_full_width/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/web_searchbar_full_width/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/web_dialog_size/__manifest__.py b/web_dialog_size/__manifest__.py index 046631644e8d..10b14d75a6ec 100644 --- a/web_dialog_size/__manifest__.py +++ b/web_dialog_size/__manifest__.py @@ -1,26 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This file is part of web_dialog_sizes, an Odoo module. -# -# Copyright (c) 2015 ACSONE SA/NV () -# -# web_expand_dialog 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. -# -# web_expand_dialog 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 web_expand_dialog. -# If not, see . -# -############################################################################## +# Copyright 2015 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + { 'name': "Web Dialog Size", @@ -36,7 +17,7 @@ 'website': "http://acsone.eu", 'category': 'web', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'license': 'AGPL-3', 'depends': [ @@ -46,7 +27,7 @@ 'static/src/xml/web_dialog_size.xml', ], 'data': [ - 'view/qweb.xml', + 'templates/assets.xml', ], - 'installable': False, + 'installable': True, } diff --git a/web_dialog_size/static/src/js/web_dialog_size.js b/web_dialog_size/static/src/js/web_dialog_size.js index 56e070f29403..df56b8fee07c 100644 --- a/web_dialog_size/static/src/js/web_dialog_size.js +++ b/web_dialog_size/static/src/js/web_dialog_size.js @@ -23,14 +23,14 @@ Dialog.include({ }, _extending: function() { - var dialog = this.$el.parents('.modal-dialog'); + var dialog = this.$modal.find('.modal-dialog'); dialog.addClass('dialog_full_screen'); dialog.find('.dialog_button_extend').hide(); dialog.find('.dialog_button_restore').show(); }, _restore: function() { - var dialog = this.$el.parents('.modal-dialog'); + var dialog = this.$modal.find('.modal-dialog'); dialog.removeClass('dialog_full_screen'); dialog.find('.dialog_button_restore').hide(); dialog.find('.dialog_button_extend').show(); diff --git a/web_dialog_size/view/qweb.xml b/web_dialog_size/templates/assets.xml similarity index 100% rename from web_dialog_size/view/qweb.xml rename to web_dialog_size/templates/assets.xml diff --git a/web_export_view/i18n/de.po b/web_export_view/i18n/de.po new file mode 100644 index 000000000000..90d25b6d0abb --- /dev/null +++ b/web_export_view/i18n/de.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_export_view +# +# Translators: +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-03 01:37+0000\n" +"PO-Revision-Date: 2017-02-03 01:37+0000\n" +"Last-Translator: Niki Waibel , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/xml/web_export_view_template.xml:6 +#, python-format +msgid "Export xls" +msgstr "Exportiere xls" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/js/web_export_view.js:66 +#, python-format +msgid "False" +msgstr "Falsch" + +#. module: web_export_view +#. openerp-web +#: code:addons/web_export_view/static/src/js/web_export_view.js:63 +#, python-format +msgid "True" +msgstr "Richtig" diff --git a/web_notify/i18n/de.po b/web_notify/i18n/de.po new file mode 100644 index 000000000000..bb2bbe5870cb --- /dev/null +++ b/web_notify/i18n/de.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_notify +# +# Translators: +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-03 01:37+0000\n" +"PO-Revision-Date: 2017-02-03 01:37+0000\n" +"Last-Translator: Niki Waibel , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_notify +#: code:addons/web_notify/models/res_users.py:27 +#, python-format +msgid "Information" +msgstr "Information" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users_notify_info_channel_name +msgid "Notify info channel name" +msgstr "Name des Informationen-Kanals" + +#. module: web_notify +#: model:ir.model.fields,field_description:web_notify.field_res_users_notify_warning_channel_name +msgid "Notify warning channel name" +msgstr "Name des Warnungen-Kanals" + +#. module: web_notify +#: model:ir.model,name:web_notify.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: web_notify +#: code:addons/web_notify/models/res_users.py:33 +#, python-format +msgid "Warning" +msgstr "Warnung" diff --git a/web_responsive/i18n/de.po b/web_responsive/i18n/de.po new file mode 100644 index 000000000000..23bbe982925a --- /dev/null +++ b/web_responsive/i18n/de.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_responsive +# +# Translators: +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-03 01:37+0000\n" +"PO-Revision-Date: 2017-02-03 01:37+0000\n" +"Last-Translator: Niki Waibel , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_responsive +#: model:ir.ui.view,arch_db:web_responsive.webclient_bootstrap +msgid "Toggle App Drawer" +msgstr "App Ordner umschalten" + +#. module: web_responsive +#: model:ir.ui.view,arch_db:web_responsive.webclient_bootstrap +msgid "Toggle Navigation" +msgstr "Navigation umschalten" + +#. module: web_responsive +#: model:ir.ui.view,arch_db:web_responsive.menu +msgid "Apps" +msgstr "Apps" + +#. module: web_responsive +#: model:ir.ui.view,arch_db:web_responsive.menu +msgid "More " +msgstr "Mehr " diff --git a/web_searchbar_full_width/__manifest__.py b/web_searchbar_full_width/__manifest__.py index 91b2d87ff434..2ffc4026d39a 100644 --- a/web_searchbar_full_width/__manifest__.py +++ b/web_searchbar_full_width/__manifest__.py @@ -20,7 +20,7 @@ ############################################################################## { "name": "Full width searchbar", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "author": "Therp BV, " "Odoo Community Association (OCA), " "Siddharth Bhalgami", @@ -33,5 +33,5 @@ "data": [ 'views/templates.xml', ], - 'installable': False, + 'installable': True, } diff --git a/web_searchbar_full_width/static/src/css/web_searchbar_full_width.css b/web_searchbar_full_width/static/src/css/web_searchbar_full_width.css index f09caad68392..b65b99288376 100644 --- a/web_searchbar_full_width/static/src/css/web_searchbar_full_width.css +++ b/web_searchbar_full_width/static/src/css/web_searchbar_full_width.css @@ -1,8 +1,16 @@ -.openerp .oe-control-panel .oe-cp-title { +.o_control_panel .breadcrumb { width: 100%; + margin-bottom: 5px; } -.openerp .oe-control-panel .oe-cp-search-view { - padding-top: 0px; - padding-bottom: 3px; + +.o_control_panel .o_cp_searchview { width: 100%; } + +.o_control_panel .o_cp_left { + width: 45%; +} + +.o_control_panel .o_cp_right { + width: 55%; +} diff --git a/web_x2many_delete_all/i18n/de.po b/web_x2many_delete_all/i18n/de.po new file mode 100644 index 000000000000..76a48cccfdb8 --- /dev/null +++ b/web_x2many_delete_all/i18n/de.po @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_x2many_delete_all +# +# Translators: +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-03 01:37+0000\n" +"PO-Revision-Date: 2017-02-03 01:37+0000\n" +"Last-Translator: Niki Waibel , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_x2many_delete_all +#. openerp-web +#: code:addons/web_x2many_delete_all/static/src/xml/web_x2many_delete_all.xml:8 +#, python-format +msgid "Delete all" +msgstr "Alles löschen"