Skip to content

Commit

Permalink
Merge pull request #3 from OCA/10.0
Browse files Browse the repository at this point in the history
merge
  • Loading branch information
Dennis Sluijk authored Feb 27, 2017
2 parents bfcbf4b + deb8a77 commit 4e6810d
Show file tree
Hide file tree
Showing 18 changed files with 193 additions and 35 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ 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)
[web_listview_range_select](web_listview_range_select/) | 10.0.1.0.0 | Enables selecting a range of records using the shift key
[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
Expand All @@ -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.
Expand All @@ -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.
Expand Down
1 change: 1 addition & 0 deletions setup/web_dialog_size/odoo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
1 change: 1 addition & 0 deletions setup/web_dialog_size/odoo/addons/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
1 change: 1 addition & 0 deletions setup/web_dialog_size/odoo/addons/web_dialog_size
6 changes: 6 additions & 0 deletions setup/web_dialog_size/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
1 change: 1 addition & 0 deletions setup/web_searchbar_full_width/odoo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
1 change: 1 addition & 0 deletions setup/web_searchbar_full_width/odoo/addons/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
6 changes: 6 additions & 0 deletions setup/web_searchbar_full_width/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
31 changes: 6 additions & 25 deletions web_dialog_size/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,7 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# This file is part of web_dialog_sizes, an Odoo module.
#
# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
#
# 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 <http://www.gnu.org/licenses/>.
#
##############################################################################
# Copyright 2015 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': "Web Dialog Size",

Expand All @@ -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': [
Expand All @@ -46,7 +27,7 @@
'static/src/xml/web_dialog_size.xml',
],
'data': [
'view/qweb.xml',
'templates/assets.xml',
],
'installable': False,
'installable': True,
}
4 changes: 2 additions & 2 deletions web_dialog_size/static/src/js/web_dialog_size.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
File renamed without changes.
40 changes: 40 additions & 0 deletions web_export_view/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_export_view
#
# Translators:
# Niki Waibel <[email protected]>, 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 <[email protected]>, 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"
46 changes: 46 additions & 0 deletions web_notify/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_notify
#
# Translators:
# Niki Waibel <[email protected]>, 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 <[email protected]>, 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"
39 changes: 39 additions & 0 deletions web_responsive/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_responsive
#
# Translators:
# Niki Waibel <[email protected]>, 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 <[email protected]>, 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 "<span class=\"sr-only\">Toggle App Drawer</span>"
msgstr "<span class=\"sr-only\">App Ordner umschalten</span>"

#. module: web_responsive
#: model:ir.ui.view,arch_db:web_responsive.webclient_bootstrap
msgid "<span class=\"sr-only\">Toggle Navigation</span>"
msgstr "<span class=\"sr-only\">Navigation umschalten</span>"

#. 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 <b class=\"caret\"/>"
msgstr "Mehr <b class=\"caret\"/>"
4 changes: 2 additions & 2 deletions web_searchbar_full_width/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -33,5 +33,5 @@
"data": [
'views/templates.xml',
],
'installable': False,
'installable': True,
}
Original file line number Diff line number Diff line change
@@ -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%;
}
26 changes: 26 additions & 0 deletions web_x2many_delete_all/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_x2many_delete_all
#
# Translators:
# Niki Waibel <[email protected]>, 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 <[email protected]>, 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"

0 comments on commit 4e6810d

Please sign in to comment.