├── website_form_builder ├── __init__.py ├── readme │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ ├── CREDITS.rst │ ├── INSTALL.rst │ └── USAGE.rst ├── tests │ ├── __init__.py │ └── test_ui.py ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── css │ │ └── website_form_builder.scss ├── demo │ └── assets.xml └── __manifest__.py ├── website_img_dimension ├── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── USAGE.rst │ └── DESCRIPTION.rst ├── static │ └── description │ │ ├── icon.png │ │ └── screenshot.png ├── i18n │ ├── website_img_dimension.pot │ ├── fr.po │ ├── ca.po │ ├── es.po │ └── pt_BR.po ├── templates │ └── assets.xml └── __manifest__.py ├── oca_dependencies.txt ├── website_crm_privacy_policy ├── __init__.py ├── readme │ ├── USAGE.rst │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ └── CREDITS.rst ├── static │ └── description │ │ └── icon.png ├── i18n │ ├── website_crm_privacy_policy.pot │ ├── it.po │ ├── es.po │ ├── ru.po │ ├── el_GR.po │ ├── ca.po │ ├── de.po │ ├── pt_BR.po │ └── fr.po └── __manifest__.py ├── website_crm_quick_answer ├── __init__.py ├── readme │ ├── USAGE.rst │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ └── CONFIGURE.rst ├── static │ └── description │ │ └── icon.png ├── migrations │ └── 12.0.1.1.0 │ │ └── post-migration.py └── __manifest__.py ├── website_js_below_the_fold ├── __init__.py ├── readme │ ├── USAGE.rst │ ├── CONTRIBUTORS.rst │ └── DESCRIPTION.rst ├── static │ └── description │ │ └── icon.png ├── i18n │ ├── website_js_below_the_fold.pot │ ├── ca.po │ ├── es.po │ ├── fr.po │ └── pt_BR.po └── __manifest__.py ├── website_snippet_anchor ├── __init__.py ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── xml │ │ └── link_dialog.xml ├── readme │ ├── ROADMAP.rst │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ └── USAGE.rst ├── templates │ ├── assets.xml │ └── snippets.xml └── __manifest__.py ├── website_snippet_big_button ├── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── USAGE.rst │ └── DESCRIPTION.rst ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── scss │ │ └── website_snippet_big_button.scss ├── templates │ └── assets.xml └── __manifest__.py ├── setup ├── _metapackage │ └── VERSION.txt ├── website_logo │ ├── odoo │ │ └── addons │ │ │ └── website_logo │ └── setup.py ├── website_megamenu │ ├── odoo │ │ └── addons │ │ │ └── website_megamenu │ └── setup.py ├── website_breadcrumb │ ├── odoo │ │ └── addons │ │ │ └── website_breadcrumb │ └── setup.py ├── website_legal_page │ ├── odoo │ │ └── addons │ │ │ └── website_legal_page │ └── setup.py ├── website_media_size │ ├── odoo │ │ └── addons │ │ │ └── website_media_size │ └── setup.py ├── website_no_crawler │ ├── odoo │ │ └── addons │ │ │ └── website_no_crawler │ └── setup.py ├── website_form_builder │ ├── odoo │ │ └── addons │ │ │ └── website_form_builder │ └── setup.py ├── website_canonical_url │ ├── odoo │ │ └── addons │ │ │ └── website_canonical_url │ └── setup.py ├── website_cookie_notice │ ├── odoo │ │ └── addons │ │ │ └── website_cookie_notice │ └── setup.py ├── website_crm_recaptcha │ ├── odoo │ │ └── addons │ │ │ └── website_crm_recaptcha │ └── setup.py ├── website_form_recaptcha │ ├── odoo │ │ └── addons │ │ │ └── website_form_recaptcha │ └── setup.py ├── website_img_dimension │ ├── odoo │ │ └── addons │ │ │ └── website_img_dimension │ └── setup.py ├── website_snippet_anchor │ ├── odoo │ │ └── addons │ │ │ └── website_snippet_anchor │ └── setup.py ├── website_blog_excerpt_img │ ├── odoo │ │ └── addons │ │ │ └── website_blog_excerpt_img │ └── setup.py ├── website_crm_quick_answer │ ├── odoo │ │ └── addons │ │ │ └── website_crm_quick_answer │ └── setup.py ├── website_lazy_load_image │ ├── odoo │ │ └── addons │ │ │ └── website_lazy_load_image │ └── setup.py ├── website_odoo_debranding │ ├── odoo │ │ └── addons │ │ │ └── website_odoo_debranding │ └── setup.py ├── website_js_below_the_fold │ ├── odoo │ │ └── addons │ │ │ └── website_js_below_the_fold │ └── setup.py ├── website_crm_privacy_policy │ ├── odoo │ │ └── addons │ │ │ └── website_crm_privacy_policy │ └── setup.py ├── website_google_tag_manager │ ├── odoo │ │ └── addons │ │ │ └── website_google_tag_manager │ └── setup.py ├── website_snippet_big_button │ ├── odoo │ │ └── addons │ │ │ └── website_snippet_big_button │ └── setup.py ├── README ├── website_anchor_smooth_scroll │ ├── odoo │ │ └── addons │ │ │ └── website_anchor_smooth_scroll │ └── setup.py ├── website_adv_image_optimization │ ├── odoo │ │ └── addons │ │ │ └── website_adv_image_optimization │ └── setup.py ├── website_snippet_country_dropdown │ ├── odoo │ │ └── addons │ │ │ └── website_snippet_country_dropdown │ └── setup.py ├── website_js_below_the_fold_payment │ ├── odoo │ │ └── addons │ │ │ └── website_js_below_the_fold_payment │ └── setup.py ├── website_snippet_marginless_gallery │ ├── odoo │ │ └── addons │ │ │ └── website_snippet_marginless_gallery │ └── setup.py └── .setuptools-odoo-make-default-ignore ├── website_js_below_the_fold_payment ├── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── ROADMAP.rst │ └── DESCRIPTION.rst ├── static │ └── description │ │ └── icon.png ├── i18n │ ├── website_js_below_the_fold_payment.pot │ ├── fr.po │ └── pt_BR.po ├── __manifest__.py └── templates │ └── templates.xml ├── website_snippet_marginless_gallery ├── __init__.py ├── tests │ ├── __init__.py │ └── test_ui.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ └── USAGE.rst ├── static │ └── description │ │ ├── icon.png │ │ └── s_website_marginless_gallery.png ├── images │ └── marginless_gallery.png ├── views │ └── assets.xml └── __manifest__.py ├── website_logo ├── __init__.py ├── models │ ├── __init__.py │ ├── website.py │ └── res_config.py ├── static │ └── description │ │ └── icon.png ├── readme │ ├── DESCRIPTION.rst │ ├── ROADMAP.rst │ ├── USAGE.rst │ ├── CONTRIBUTORS.rst │ └── CONFIGURE.rst ├── views │ ├── website_templates.xml │ └── res_config_view.xml └── __manifest__.py ├── website_megamenu ├── __init__.py ├── readme │ ├── DESCRIPTION.rst │ ├── ROADMAP.rst │ ├── CONTRIBUTORS.rst │ ├── CREDITS.rst │ └── USAGE.rst ├── models │ └── __init__.py ├── static │ ├── description │ │ └── icon.png │ └── src │ │ ├── img │ │ ├── s_mega_menu_multi_menus.png │ │ └── s_mega_menu_menu_image_menu.png │ │ ├── scss │ │ └── website.scss │ │ └── xml │ │ └── website.contentMenu.xml └── __manifest__.py ├── website_lazy_load_image ├── __init__.py ├── models │ └── __init__.py ├── tests │ └── __init__.py ├── readme │ ├── CONFIGURE.rst │ ├── CONTRIBUTORS.rst │ ├── ROADMAP.rst │ ├── CREDITS.rst │ ├── DESCRIPTION.rst │ └── USAGE.rst ├── static │ └── description │ │ └── icon.png ├── templates │ ├── assets.xml │ └── snippets.xml ├── __manifest__.py └── i18n │ ├── website_lazy_load_image.pot │ └── pt_BR.po ├── website_adv_image_optimization ├── tests │ ├── __init__.py │ └── test_controller.py ├── readme │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ └── USAGE.rst ├── __init__.py ├── static │ ├── description │ │ ├── icon.png │ │ └── screenshot0.png │ └── src │ │ └── css │ │ └── website_adv_image_optimization.scss ├── controllers │ └── __init__.py ├── templates │ └── assets.xml └── __manifest__.py ├── website_anchor_smooth_scroll ├── readme │ ├── ROADMAP.rst │ ├── CONTRIBUTORS.rst │ ├── INSTALL.rst │ ├── USAGE.rst │ └── DESCRIPTION.rst ├── __init__.py ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── js │ │ └── website_anchor_smooth_scroll.js ├── views │ └── assets.xml └── __manifest__.py ├── website_blog_excerpt_img ├── readme │ ├── CONTRIBUTORS.rst │ ├── INSTALL.rst │ ├── DESCRIPTION.rst │ └── USAGE.rst ├── __init__.py ├── models │ ├── __init__.py │ └── blog_post.py ├── static │ └── description │ │ ├── icon.png │ │ └── post-list.png ├── templates │ └── snippets.xml ├── i18n │ ├── website_blog_excerpt_img.pot │ ├── es_ES.po │ ├── ca.po │ ├── bg.po │ ├── de.po │ ├── it.po │ ├── eu.po │ └── zh_CN.po └── __manifest__.py ├── website_legal_page ├── __init__.py ├── tests │ ├── __init__.py │ └── test_controller.py ├── static │ └── description │ │ └── icon.png ├── readme │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ └── CREDITS.rst ├── views │ └── reusable_templates.xml └── __manifest__.py ├── website_crm_recaptcha ├── readme │ ├── DESCRIPTION.rst │ ├── USAGE.rst │ ├── CONTRIBUTORS.rst │ └── CONFIGURATION.rst ├── __init__.py ├── static │ └── description │ │ ├── icon.png │ │ └── website_crm_recaptcha.jpg ├── data │ └── ir_model_data.xml ├── hooks.py ├── i18n │ ├── website_crm_recaptcha.pot │ ├── pt_BR.po │ ├── ca.po │ ├── es.po │ ├── fr.po │ ├── zh_CN.po │ └── hr.po ├── views │ └── website_crm_template.xml └── __manifest__.py ├── website_odoo_debranding ├── __init__.py ├── readme │ ├── DESCRIPTION.rst │ ├── USAGE.rst │ └── CONTRIBUTORS.rst ├── static │ └── description │ │ └── icon.png ├── i18n │ ├── website_odoo_debranding.pot │ ├── id.po │ ├── ca.po │ ├── es.po │ ├── fr.po │ └── pt_BR.po ├── templates │ └── disable_odoo.xml └── __manifest__.py ├── website_media_size ├── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ └── USAGE.rst ├── static │ ├── description │ │ ├── icon.png │ │ └── screenshot.png │ └── src │ │ ├── scss │ │ └── website_media_size.scss │ │ ├── xml │ │ └── website_media_size.xml │ │ └── js │ │ └── website_media_size.js ├── templates │ └── assets.xml ├── i18n │ ├── website_media_size.pot │ ├── pt_BR.po │ ├── es.po │ ├── ca.po │ └── fr.po └── __manifest__.py ├── website_breadcrumb ├── __init__.py ├── models │ └── __init__.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ ├── USAGE.rst │ └── CONFIGURE.rst ├── static │ └── description │ │ └── icon.png ├── i18n │ ├── website_breadcrumb.pot │ ├── ca_ES.po │ ├── en.po │ ├── ja.po │ ├── mn.po │ ├── nl.po │ ├── sv.po │ ├── fi.po │ ├── gl.po │ ├── hu.po │ ├── el.po │ ├── it.po │ ├── pt.po │ ├── zh_CN.po │ ├── de.po │ ├── es.po │ ├── es_MX.po │ ├── es_CR.po │ ├── es_VE.po │ ├── fr.po │ ├── mk.po │ ├── ca.po │ ├── pt_BR.po │ ├── lv.po │ ├── el_GR.po │ ├── ro.po │ └── pl.po ├── __manifest__.py └── views │ └── layout.xml ├── website_cookie_notice ├── __init__.py ├── controllers │ ├── __init__.py │ └── main.py ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── js │ │ └── accept_cookies.js ├── readme │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ ├── CONFIGURE.rst │ └── ROADMAP.rst └── __manifest__.py ├── website_google_tag_manager ├── __init__.py ├── static │ └── description │ │ ├── icon.png │ │ └── website_google_tag_manager.jpg ├── models │ ├── __init__.py │ ├── website.py │ └── res_config_settings.py ├── readme │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ └── CONFIGURE.rst └── __manifest__.py ├── website_no_crawler ├── __init__.py ├── readme │ ├── USAGE.rst │ ├── CONTRIBUTORS.rst │ └── DESCRIPTION.rst ├── static │ └── description │ │ └── icon.png ├── views │ └── disable_robots.xml ├── i18n │ ├── website_no_crawler.pot │ ├── fr.po │ ├── pt_BR.po │ ├── hr.po │ ├── ca.po │ └── es.po └── __manifest__.py ├── website_form_recaptcha ├── controllers │ └── __init__.py ├── static │ └── description │ │ ├── icon.png │ │ ├── recaptcha_ico.png │ │ └── website_form_recaptcha.jpg ├── __init__.py ├── readme │ ├── ROADMAP.rst │ ├── CONTRIBUTORS.rst │ ├── DESCRIPTION.rst │ ├── USAGE.rst │ └── CONFIGURE.rst ├── tests │ └── __init__.py ├── models │ ├── __init__.py │ ├── website.py │ └── ir_model.py ├── views │ └── assets.xml ├── __manifest__.py └── migrations │ └── 12.0.1.0.0 │ └── post-migrate.py ├── website_canonical_url ├── static │ └── description │ │ └── icon.png ├── __init__.py ├── models │ ├── __init__.py │ └── res_config.py ├── tests │ └── __init__.py └── __manifest__.py ├── website_snippet_country_dropdown ├── static │ ├── description │ │ └── icon.png │ └── src │ │ ├── css │ │ └── style.scss │ │ └── xml │ │ └── country_dropdown.xml ├── __init__.py ├── readme │ ├── DESCRIPTION.rst │ ├── CONTRIBUTORS.rst │ └── ROADMAP.rst ├── tests │ ├── __init__.py │ └── test_snippet_country_dropdown.py ├── demo │ └── assets.xml ├── views │ └── assets.xml └── __manifest__.py ├── .editorconfig ├── README.md └── .gitignore /website_form_builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_img_dimension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oca_dependencies.txt: -------------------------------------------------------------------------------- 1 | server-tools 2 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_crm_quick_answer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_js_below_the_fold/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_snippet_anchor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_snippet_big_button/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/_metapackage/VERSION.txt: -------------------------------------------------------------------------------- 1 | 12.0.20211016.0 -------------------------------------------------------------------------------- /website_js_below_the_fold_payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_logo/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /website_megamenu/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /website_lazy_load_image/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /setup/website_logo/odoo/addons/website_logo: -------------------------------------------------------------------------------- 1 | ../../../../website_logo -------------------------------------------------------------------------------- /website_lazy_load_image/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ir_ui_view 2 | -------------------------------------------------------------------------------- /setup/website_megamenu/odoo/addons/website_megamenu: -------------------------------------------------------------------------------- 1 | ../../../../website_megamenu -------------------------------------------------------------------------------- /website_adv_image_optimization/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_controller 2 | -------------------------------------------------------------------------------- /website_lazy_load_image/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_lazy_load_image 2 | -------------------------------------------------------------------------------- /setup/website_breadcrumb/odoo/addons/website_breadcrumb: -------------------------------------------------------------------------------- 1 | ../../../../website_breadcrumb -------------------------------------------------------------------------------- /setup/website_legal_page/odoo/addons/website_legal_page: -------------------------------------------------------------------------------- 1 | ../../../../website_legal_page -------------------------------------------------------------------------------- /setup/website_media_size/odoo/addons/website_media_size: -------------------------------------------------------------------------------- 1 | ../../../../website_media_size -------------------------------------------------------------------------------- /setup/website_no_crawler/odoo/addons/website_no_crawler: -------------------------------------------------------------------------------- 1 | ../../../../website_no_crawler -------------------------------------------------------------------------------- /website_logo/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import website 2 | from . import res_config 3 | -------------------------------------------------------------------------------- /setup/website_form_builder/odoo/addons/website_form_builder: -------------------------------------------------------------------------------- 1 | ../../../../website_form_builder -------------------------------------------------------------------------------- /website_lazy_load_image/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | This module needs no manual configuration. 2 | -------------------------------------------------------------------------------- /website_lazy_load_image/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dennis Sluijk 2 | -------------------------------------------------------------------------------- /setup/website_canonical_url/odoo/addons/website_canonical_url: -------------------------------------------------------------------------------- 1 | ../../../../website_canonical_url -------------------------------------------------------------------------------- /setup/website_cookie_notice/odoo/addons/website_cookie_notice: -------------------------------------------------------------------------------- 1 | ../../../../website_cookie_notice -------------------------------------------------------------------------------- /setup/website_crm_recaptcha/odoo/addons/website_crm_recaptcha: -------------------------------------------------------------------------------- 1 | ../../../../website_crm_recaptcha -------------------------------------------------------------------------------- /setup/website_form_recaptcha/odoo/addons/website_form_recaptcha: -------------------------------------------------------------------------------- 1 | ../../../../website_form_recaptcha -------------------------------------------------------------------------------- /setup/website_img_dimension/odoo/addons/website_img_dimension: -------------------------------------------------------------------------------- 1 | ../../../../website_img_dimension -------------------------------------------------------------------------------- /setup/website_snippet_anchor/odoo/addons/website_snippet_anchor: -------------------------------------------------------------------------------- 1 | ../../../../website_snippet_anchor -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * Add option to smooth when changing page. 2 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Jairo Llopis 2 | -------------------------------------------------------------------------------- /website_lazy_load_image/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * Lazy load background images (background-image) 2 | -------------------------------------------------------------------------------- /setup/website_blog_excerpt_img/odoo/addons/website_blog_excerpt_img: -------------------------------------------------------------------------------- 1 | ../../../../website_blog_excerpt_img -------------------------------------------------------------------------------- /setup/website_crm_quick_answer/odoo/addons/website_crm_quick_answer: -------------------------------------------------------------------------------- 1 | ../../../../website_crm_quick_answer -------------------------------------------------------------------------------- /setup/website_lazy_load_image/odoo/addons/website_lazy_load_image: -------------------------------------------------------------------------------- 1 | ../../../../website_lazy_load_image -------------------------------------------------------------------------------- /setup/website_odoo_debranding/odoo/addons/website_odoo_debranding: -------------------------------------------------------------------------------- 1 | ../../../../website_odoo_debranding -------------------------------------------------------------------------------- /website_legal_page/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | -------------------------------------------------------------------------------- /website_megamenu/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module backports the mega menu feature from 13.0 CE 2 | -------------------------------------------------------------------------------- /setup/website_js_below_the_fold/odoo/addons/website_js_below_the_fold: -------------------------------------------------------------------------------- 1 | ../../../../website_js_below_the_fold -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | -------------------------------------------------------------------------------- /website_crm_recaptcha/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Adds a Recaptcha validation to Contact form on Website. 2 | -------------------------------------------------------------------------------- /website_js_below_the_fold_payment/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Iván Todorovich 2 | -------------------------------------------------------------------------------- /website_megamenu/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * This module should disappear for v13 and be merged into ``website``. -------------------------------------------------------------------------------- /website_odoo_debranding/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). 2 | -------------------------------------------------------------------------------- /setup/website_crm_privacy_policy/odoo/addons/website_crm_privacy_policy: -------------------------------------------------------------------------------- 1 | ../../../../website_crm_privacy_policy -------------------------------------------------------------------------------- /setup/website_google_tag_manager/odoo/addons/website_google_tag_manager: -------------------------------------------------------------------------------- 1 | ../../../../website_google_tag_manager -------------------------------------------------------------------------------- /setup/website_snippet_big_button/odoo/addons/website_snippet_big_button: -------------------------------------------------------------------------------- 1 | ../../../../website_snippet_big_button -------------------------------------------------------------------------------- /setup/README: -------------------------------------------------------------------------------- 1 | To learn more about this directory, please visit 2 | https://pypi.python.org/pypi/setuptools-odoo 3 | -------------------------------------------------------------------------------- /setup/website_anchor_smooth_scroll/odoo/addons/website_anchor_smooth_scroll: -------------------------------------------------------------------------------- 1 | ../../../../website_anchor_smooth_scroll -------------------------------------------------------------------------------- /website_js_below_the_fold/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | This is a technical module and have no graphical interface whatsoever. 2 | -------------------------------------------------------------------------------- /setup/website_adv_image_optimization/odoo/addons/website_adv_image_optimization: -------------------------------------------------------------------------------- 1 | ../../../../website_adv_image_optimization -------------------------------------------------------------------------------- /website_crm_recaptcha/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to the Contact form on Website 4 | -------------------------------------------------------------------------------- /setup/website_snippet_country_dropdown/odoo/addons/website_snippet_country_dropdown: -------------------------------------------------------------------------------- 1 | ../../../../website_snippet_country_dropdown -------------------------------------------------------------------------------- /website_crm_privacy_policy/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | Website editors can change easily any text of these pages using website builder 2 | -------------------------------------------------------------------------------- /website_form_builder/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module provides websites the feature of adding custom forms in any page. 2 | -------------------------------------------------------------------------------- /website_media_size/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Onestein 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | -------------------------------------------------------------------------------- /website_media_size/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dennis Sluijk 2 | * Jose Robles 3 | -------------------------------------------------------------------------------- /setup/website_js_below_the_fold_payment/odoo/addons/website_js_below_the_fold_payment: -------------------------------------------------------------------------------- 1 | ../../../../website_js_below_the_fold_payment -------------------------------------------------------------------------------- /setup/website_snippet_marginless_gallery/odoo/addons/website_snippet_marginless_gallery: -------------------------------------------------------------------------------- 1 | ../../../../website_snippet_marginless_gallery -------------------------------------------------------------------------------- /website_blog_excerpt_img/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /website_breadcrumb/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /website_cookie_notice/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import controllers 4 | -------------------------------------------------------------------------------- /website_form_builder/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). 2 | 3 | from . import test_ui 4 | -------------------------------------------------------------------------------- /website_google_tag_manager/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import models 4 | -------------------------------------------------------------------------------- /website_img_dimension/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dennis Sluijk 2 | * Kaushal Prajapati 3 | -------------------------------------------------------------------------------- /website_megamenu/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). 2 | from . import website_menu 3 | -------------------------------------------------------------------------------- /website_megamenu/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Odoo S.A. 2 | * `Tecnativa `__: 3 | 4 | * Alexandre D. Díaz 5 | -------------------------------------------------------------------------------- /website_no_crawler/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 B-informed B.V. 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Rafael Blasco 2 | * Jairo Llopis 3 | -------------------------------------------------------------------------------- /website_breadcrumb/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). 2 | 3 | from . import website 4 | -------------------------------------------------------------------------------- /website_cookie_notice/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import main 4 | -------------------------------------------------------------------------------- /website_js_below_the_fold/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dennis Sluijk 2 | * Kaushal Prajapati 3 | -------------------------------------------------------------------------------- /website_legal_page/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import test_controller 4 | -------------------------------------------------------------------------------- /website_logo/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_logo/static/description/icon.png -------------------------------------------------------------------------------- /website_media_size/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module shows the size of the media in the media selector (only for media that was uploaded). 2 | -------------------------------------------------------------------------------- /website_no_crawler/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | No useable features for an user are available. 2 | To view the results, visit /robots.txt on your site. 3 | -------------------------------------------------------------------------------- /setup/.setuptools-odoo-make-default-ignore: -------------------------------------------------------------------------------- 1 | # addons listed in this file are ignored by 2 | # setuptools-odoo-make-default (one addon per line) 3 | -------------------------------------------------------------------------------- /website_adv_image_optimization/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module allows the user to manually apply compression and resize options on an image. 2 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). 2 | 3 | from . import blog_post 4 | -------------------------------------------------------------------------------- /website_breadcrumb/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Tecnativa `__: 2 | 3 | * Jairo Llopis 4 | * Cristina Martin R. 5 | -------------------------------------------------------------------------------- /website_form_recaptcha/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import main 4 | -------------------------------------------------------------------------------- /setup/website_logo/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /website_adv_image_optimization/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dennis Sluijk 2 | * Alexandre Díaz 3 | -------------------------------------------------------------------------------- /website_breadcrumb/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_breadcrumb/static/description/icon.png -------------------------------------------------------------------------------- /website_crm_recaptcha/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from .hooks import uninstall_hook 4 | -------------------------------------------------------------------------------- /website_legal_page/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_legal_page/static/description/icon.png -------------------------------------------------------------------------------- /website_media_size/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_media_size/static/description/icon.png -------------------------------------------------------------------------------- /website_megamenu/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_megamenu/static/description/icon.png -------------------------------------------------------------------------------- /website_no_crawler/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_no_crawler/static/description/icon.png -------------------------------------------------------------------------------- /website_snippet_big_button/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Tecnativa `__: 2 | 3 | * Jairo Llopis 4 | * Cristina Martin R. 5 | -------------------------------------------------------------------------------- /setup/website_breadcrumb/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_legal_page/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_media_size/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_megamenu/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_no_crawler/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /website_form_builder/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_form_builder/static/description/icon.png -------------------------------------------------------------------------------- /website_lazy_load_image/readme/CREDITS.rst: -------------------------------------------------------------------------------- 1 | The development of this module has been financially supported by: 2 | 3 | * Smoose () 4 | -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). 2 | 3 | from . import test_ui 4 | -------------------------------------------------------------------------------- /setup/website_blog_excerpt_img/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_canonical_url/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_cookie_notice/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_crm_quick_answer/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_crm_recaptcha/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_form_builder/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_form_recaptcha/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_img_dimension/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_lazy_load_image/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_odoo_debranding/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_snippet_anchor/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/readme/INSTALL.rst: -------------------------------------------------------------------------------- 1 | To install this module, you need to: 2 | 3 | * Install `OCA/server-tools `_. 4 | -------------------------------------------------------------------------------- /website_canonical_url/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_canonical_url/static/description/icon.png -------------------------------------------------------------------------------- /website_cookie_notice/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_cookie_notice/static/description/icon.png -------------------------------------------------------------------------------- /website_crm_recaptcha/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_crm_recaptcha/static/description/icon.png -------------------------------------------------------------------------------- /website_form_recaptcha/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_form_recaptcha/static/description/icon.png -------------------------------------------------------------------------------- /website_img_dimension/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_img_dimension/static/description/icon.png -------------------------------------------------------------------------------- /website_lazy_load_image/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_lazy_load_image/static/description/icon.png -------------------------------------------------------------------------------- /website_odoo_debranding/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module remove Odoo branding on website: 2 | 3 | * Remove "Create a free website with Odoo" from footer 4 | -------------------------------------------------------------------------------- /website_odoo_debranding/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_odoo_debranding/static/description/icon.png -------------------------------------------------------------------------------- /website_snippet_anchor/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_snippet_anchor/static/description/icon.png -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Tecnativa `__: 2 | 3 | * Jairo Llopis 4 | * Cristina Martin R. 5 | -------------------------------------------------------------------------------- /setup/website_anchor_smooth_scroll/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_crm_privacy_policy/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_google_tag_manager/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_js_below_the_fold/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_snippet_big_button/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_blog_excerpt_img/static/description/icon.png -------------------------------------------------------------------------------- /website_canonical_url/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright initOS GmbH 2016 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import models 5 | -------------------------------------------------------------------------------- /website_crm_quick_answer/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | Have an email address in your main company. It will be used as sender address. 4 | -------------------------------------------------------------------------------- /website_crm_quick_answer/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_crm_quick_answer/static/description/icon.png -------------------------------------------------------------------------------- /website_form_recaptcha/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import models 4 | from . import controllers 5 | -------------------------------------------------------------------------------- /website_js_below_the_fold/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_js_below_the_fold/static/description/icon.png -------------------------------------------------------------------------------- /website_js_below_the_fold_payment/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | This module is not required in `13.0`, and shouldn't be migrated. 2 | Odoo removed the embebed js in this view. 3 | -------------------------------------------------------------------------------- /website_media_size/static/description/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_media_size/static/description/screenshot.png -------------------------------------------------------------------------------- /setup/website_adv_image_optimization/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_js_below_the_fold_payment/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_snippet_country_dropdown/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /setup/website_snippet_marginless_gallery/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | 3 | setuptools.setup( 4 | setup_requires=['setuptools-odoo'], 5 | odoo_addon=True, 6 | ) 7 | -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_anchor_smooth_scroll/static/description/icon.png -------------------------------------------------------------------------------- /website_crm_privacy_policy/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_crm_privacy_policy/static/description/icon.png -------------------------------------------------------------------------------- /website_google_tag_manager/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_google_tag_manager/static/description/icon.png -------------------------------------------------------------------------------- /website_img_dimension/static/description/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_img_dimension/static/description/screenshot.png -------------------------------------------------------------------------------- /website_snippet_big_button/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_snippet_big_button/static/description/icon.png -------------------------------------------------------------------------------- /website_adv_image_optimization/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Onestein 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import controllers 5 | -------------------------------------------------------------------------------- /website_adv_image_optimization/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_adv_image_optimization/static/description/icon.png -------------------------------------------------------------------------------- /website_blog_excerpt_img/static/description/post-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_blog_excerpt_img/static/description/post-list.png -------------------------------------------------------------------------------- /website_form_recaptcha/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * Add domain validation 2 | * Split recaptcha APIs from `website_form` dependency 3 | (ie: new module `website_recaptcha_base`) 4 | -------------------------------------------------------------------------------- /website_img_dimension/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | #. Go to the website as an editor; 2 | #. hover over any image on the website; 3 | #. the dimensions will show on the top of the image. 4 | -------------------------------------------------------------------------------- /website_logo/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Load a logo image to be used on website only. This allows to use an internal 2 | company logo (for reports) and a different website logo. 3 | -------------------------------------------------------------------------------- /website_logo/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * It would be useful to add the functionality of displaying the company's logo 2 | on the website when a logo for the website is not specified. -------------------------------------------------------------------------------- /website_adv_image_optimization/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Onestein 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import main 5 | -------------------------------------------------------------------------------- /website_form_recaptcha/static/description/recaptcha_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_form_recaptcha/static/description/recaptcha_ico.png -------------------------------------------------------------------------------- /website_form_recaptcha/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016-2017 LasLabs Inc. 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). 3 | from . import test_captcha 4 | -------------------------------------------------------------------------------- /website_js_below_the_fold_payment/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_js_below_the_fold_payment/static/description/icon.png -------------------------------------------------------------------------------- /website_media_size/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to the media selector 4 | #. You'll see the size in kB in the left top corner of the media item 5 | -------------------------------------------------------------------------------- /website_megamenu/static/src/img/s_mega_menu_multi_menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_megamenu/static/src/img/s_mega_menu_multi_menus.png -------------------------------------------------------------------------------- /website_snippet_country_dropdown/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_snippet_country_dropdown/static/description/icon.png -------------------------------------------------------------------------------- /website_google_tag_manager/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import website 4 | from . import res_config_settings 5 | -------------------------------------------------------------------------------- /website_google_tag_manager/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Sebastien Alix `_ 2 | 3 | * `Tecnativa `__: 4 | 5 | * Cristina Martin R. 6 | -------------------------------------------------------------------------------- /website_megamenu/static/src/img/s_mega_menu_menu_image_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_megamenu/static/src/img/s_mega_menu_menu_image_menu.png -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_snippet_marginless_gallery/static/description/icon.png -------------------------------------------------------------------------------- /website_adv_image_optimization/static/description/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_adv_image_optimization/static/description/screenshot0.png -------------------------------------------------------------------------------- /website_crm_recaptcha/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dave Lasley 2 | 3 | * `Tecnativa `__: 4 | 5 | * Cristina Martin R. 6 | * Jairo Llopis 7 | -------------------------------------------------------------------------------- /website_crm_recaptcha/static/description/website_crm_recaptcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_crm_recaptcha/static/description/website_crm_recaptcha.jpg -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/images/marginless_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_snippet_marginless_gallery/images/marginless_gallery.png -------------------------------------------------------------------------------- /website_form_builder/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Tecnativa `_: 2 | * Jairo Llopis 3 | * Alexandre Díaz 4 | -------------------------------------------------------------------------------- /website_form_recaptcha/static/description/website_form_recaptcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_form_recaptcha/static/description/website_form_recaptcha.jpg -------------------------------------------------------------------------------- /website_google_tag_manager/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module allows to configure your Odoo website to support the 2 | `GTM `_ 3 | tool. 4 | -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/readme/INSTALL.rst: -------------------------------------------------------------------------------- 1 | You might be interested in the module ``website_snippet_anchor``, that lets you 2 | assign anchors and link to them easily, but it is not required. 3 | -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to any website view. 4 | #. Create any link whose URL starts with ``#``. 5 | #. Save. 6 | #. Click on it. 7 | -------------------------------------------------------------------------------- /website_canonical_url/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright initOS GmbH 2016 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import website 5 | from . import res_config 6 | -------------------------------------------------------------------------------- /website_logo/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to a website and you will see the logo configured for the website 4 | instead of the logo of the website's company 5 | -------------------------------------------------------------------------------- /website_anchor_smooth_scroll/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module extends the functionality of website links to support smooth 2 | scrolling and allow you to have it for free and with zero configuration. 3 | -------------------------------------------------------------------------------- /website_form_builder/readme/CREDITS.rst: -------------------------------------------------------------------------------- 1 | Images 2 | ------ 3 | 4 | * https://openclipart.org/detail/281632/form 5 | * https://openclipart.org/detail/224192/simple-grey-small-pencil-icon-white-background 6 | -------------------------------------------------------------------------------- /website_snippet_anchor/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * This module won't be needed in v13 thanks to `odoo/odoo@59cc261 2 | `_. 4 | -------------------------------------------------------------------------------- /website_google_tag_manager/static/description/website_google_tag_manager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_google_tag_manager/static/description/website_google_tag_manager.jpg -------------------------------------------------------------------------------- /website_odoo_debranding/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | #. Go to your home page. 2 | #. Enable or disable *Customize > Footer Copyright > Remove Odoo Promotional 3 | Link* at your will. It should be enabled by default. 4 | -------------------------------------------------------------------------------- /website_snippet_anchor/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Rafael Blasco 2 | * Jairo Llopis 3 | * Dennis Sluijk 4 | * Cristina Martin R. 5 | -------------------------------------------------------------------------------- /website_megamenu/readme/CREDITS.rst: -------------------------------------------------------------------------------- 1 | This module is a backport from Odoo SA and as such, it is not included in the 2 | OCA CLA. That means we do not have a copy of the copyright on it like all other 3 | OCA modules. 4 | -------------------------------------------------------------------------------- /website_no_crawler/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Roel Adriaans 2 | * `Tecnativa `_: 3 | 4 | * Ernesto Tejeda 5 | * Kaushal Prajapati 6 | -------------------------------------------------------------------------------- /website_cookie_notice/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module adds the cookie notice, according to the `european cookie law 2 | `_, 3 | to your website. 4 | -------------------------------------------------------------------------------- /website_snippet_country_dropdown/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2016 Jairo Llopis 3 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). 4 | 5 | from . import tests 6 | -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/static/description/s_website_marginless_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-oca-website/12.0/website_snippet_marginless_gallery/static/description/s_website_marginless_gallery.png -------------------------------------------------------------------------------- /website_breadcrumb/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module allows you to have breadcrumbs in any page of your website. 2 | But if an URL is not present in a menu (as indicated in the Configuration 3 | section), no breadcrumbs will display. 4 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module was written to add a checkbox to contact us form for user privacy 2 | policy validation 3 | 4 | Privacy policy is provided by Website legal page addon (website_legal_page) 5 | -------------------------------------------------------------------------------- /website_odoo_debranding/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Antonio Espinosa 2 | * Vicent Cubells 3 | * Jairo Llopis 4 | * Karan Shah 5 | -------------------------------------------------------------------------------- /website_snippet_big_button/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | * Edit any web page. 4 | * Go to **Insert Blocks > Big Buttons**. 5 | * Drag it anywhere. 6 | 7 | You can edit the link anywhere on the button. 8 | -------------------------------------------------------------------------------- /website_crm_quick_answer/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module was written to extend the functionality of the website contact form 2 | to support sending the interested contact an automatic welcome email and allow 3 | you to customize it. 4 | -------------------------------------------------------------------------------- /website_snippet_country_dropdown/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module adds a snippet with a dropdown and an input text field, is a base 2 | for be inherited by others modules into an HTML form. 3 | 4 | This can be inserted into form elements. 5 | -------------------------------------------------------------------------------- /website_js_below_the_fold_payment/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This is a technical module to fix a compatibility issue between 2 | `website_js_below_the_fold` and `payment` modules. 3 | 4 | Issue description: https://github.com/OCA/website/issues/587 5 | -------------------------------------------------------------------------------- /website_no_crawler/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | By default, /robots.txt on an Odoo installation with website module installed will allow indexing by webcrawlers. 2 | 3 | This module will overwrite view that generates /robots.txt and won't allow to index. 4 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Jorge Camacho 2 | * `Tecnativa `_: 3 | 4 | * Antonio Espinosa 5 | * Rafael Blasco 6 | * Vicent Cubells 7 | * Jairo Llopis 8 | * Ernesto Tejeda 9 | -------------------------------------------------------------------------------- /website_form_recaptcha/models/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 2 | 3 | from . import ir_model 4 | from . import website 5 | from . import website_config_settings 6 | from . import website_form_recaptcha 7 | -------------------------------------------------------------------------------- /website_google_tag_manager/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | #. Go to **Website > Configuration > Settings** 4 | #. Search 'Google Tag Manager' option. 5 | #. Fill in your 'Google Tag Manager Key' (e.g. 'GTM-ABCDEF'). 6 | -------------------------------------------------------------------------------- /website_lazy_load_image/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module loads images on the website lazy which means 2 | images are loaded only when the visitor scrolls to it (visible in viewport). 3 | This reduces network traffic for your website and your visitors. 4 | -------------------------------------------------------------------------------- /website_logo/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Lorenzo Battistini 2 | * Eslam Amer 3 | * `Tecnativa `_: 4 | 5 | * Antonio Espinosa 6 | * David Vidal 7 | * Ernesto Tejeda 8 | -------------------------------------------------------------------------------- /website_snippet_country_dropdown/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2016 Jairo Llopis 3 | # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). 4 | 5 | from . import test_snippet_country_dropdown 6 | -------------------------------------------------------------------------------- /website_snippet_marginless_gallery/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module extends the functionality of the website module to add a new 2 | snippet that forms a marginless gallery and allow you to create a grid of 3 | photos that have no spaces between themselves. 4 | -------------------------------------------------------------------------------- /website_crm_recaptcha/readme/CONFIGURATION.rst: -------------------------------------------------------------------------------- 1 | This module requires no special configuration, `once you have configured ``website_form_recaptcha`` `__. 2 | -------------------------------------------------------------------------------- /website_snippet_country_dropdown/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * `Tecnativa `_: 2 | 3 | * Sergio Teruel 4 | * Jairo Llopis 5 | * Alexandre Díaz 6 | -------------------------------------------------------------------------------- /website_form_builder/readme/INSTALL.rst: -------------------------------------------------------------------------------- 1 | Install some other addon that provides ``website_form`` support to 2 | benefit from this one's features. Hints: 3 | 4 | * ``website_crm`` 5 | * ``website_form_project`` 6 | * ``website_hr_recruitment`` 7 | * ``website_sale`` 8 | -------------------------------------------------------------------------------- /website_snippet_big_button/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module was written to extend the functionality of website to support 2 | inserting a block with a "like" and "not like" button and allow you to 3 | customize their links, to provide a better UX for your visitors. 4 | -------------------------------------------------------------------------------- /website_logo/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | * Go to "Website -> Configuration -> Settings". 4 | * In the configuration of the selected website there is a 'Logo' label under 5 | the Favicon. 6 | * Load a logo image in the logo field. 7 | -------------------------------------------------------------------------------- /website_crm_quick_answer/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | 2 | * `Tecnativa `__: 3 | 4 | * Rafael Blasco 5 | * Jairo Llopis 6 | * David Vidal 7 | * Cristina Martin R. 8 | -------------------------------------------------------------------------------- /website_form_recaptcha/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Dave Lasley 2 | * Mykhailo Panarin 3 | * Simone Orsi 4 | 5 | * `Tecnativa `__: 6 | 7 | * Cristina Martin R. 8 | * Jairo Llopis 9 | -------------------------------------------------------------------------------- /website_canonical_url/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Simone Orsi 2 | # Copyright 2016 Jairo Llopis 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | from . import test_url 6 | from . import test_tags 7 | -------------------------------------------------------------------------------- /website_lazy_load_image/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | This module automatically lazy loads all images on the page. 2 | 3 | To exclude an image for lazy loading: 4 | 5 | #. Go to the website editor; 6 | #. click 'Edit'; 7 | #. select an image; 8 | #. check the option 'Disable Lazy loading' in the context menu. 9 | -------------------------------------------------------------------------------- /website_cookie_notice/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Lorenzo Battistini 2 | * Nicola Malcontenti 3 | * Nicolas JEUDY 4 | * `Tecnativa `_: 5 | 6 | * Rafael Blasco 7 | * Jairo Llopis 8 | * Ernesto Tejeda 9 | -------------------------------------------------------------------------------- /website_logo/models/website.py: -------------------------------------------------------------------------------- 1 | from odoo import fields, models 2 | 3 | 4 | class Website(models.Model): 5 | _inherit = 'website' 6 | 7 | logo = fields.Binary( 8 | string="Website logo", 9 | help="This field holds the logo for this website, showed in header. " 10 | "Recommended size is 180x50") 11 | -------------------------------------------------------------------------------- /website_adv_image_optimization/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Enter the website in edit mode 4 | #. Select an image on website and double click on it 5 | #. Now a dialog opens with all your media 6 | #. Select tab 'Image' 7 | #. Click on a uploaded image (images from urls do not work) 8 | #. Click on the resize icon 9 | -------------------------------------------------------------------------------- /website_form_recaptcha/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Adds a ReCaptcha field widget for website forms (extends the `website_form` module). 2 | 3 | **Translations** 4 | 5 | This module will try to use the language of your website. 6 | If it can't find it for any reason, 7 | it will default to google API 8 | and use the language of the browser or your location. 9 | -------------------------------------------------------------------------------- /website_img_dimension/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | Simple module that (if you're an editor) shows the width and height (including original width and height) of 2 | images on the website. 3 | 4 | This module can be useful when you're e.g. optimizing your website. 5 | 6 | .. image:: /website_img_dimension/static/description/screenshot.png 7 | :alt: Screenshot of tooltip 8 | -------------------------------------------------------------------------------- /website_form_recaptcha/models/website.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Simone Orsi - Camptocamp SA 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class Website(models.Model): 8 | _inherit = 'website' 9 | 10 | recaptcha_key_site = fields.Char() 11 | recaptcha_key_secret = fields.Char() 12 | -------------------------------------------------------------------------------- /website_snippet_country_dropdown/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * Add tests. 2 | * Snippet drag and drop `seems to be blocked by Odoo for some unknown reason. 3 | `_. 4 | Given the main purpose of this module is to provide a reusable template for 5 | other modules to use, did not take the time to fix that use case. 6 | -------------------------------------------------------------------------------- /website_legal_page/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module was written to provide common legal pages needed in any website: 2 | 3 | * **Legal advice**: Website proprietary and disclaimers 4 | * **Terms of use**: Which services website offers and legal restrictions applied to them 5 | * **Privacy policy**: Company privacy policy applied to user data collected through the website 6 | -------------------------------------------------------------------------------- /website_snippet_country_dropdown/static/src/css/style.scss: -------------------------------------------------------------------------------- 1 | /* Copyright 2015-2016 Jairo Llopis 2 | License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).*/ 3 | 4 | .js_country_dropdown { 5 | .scrollable-menu { 6 | height: auto; 7 | max-height: 200px; 8 | overflow-x: hidden; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /website_no_crawler/views/disable_robots.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | -------------------------------------------------------------------------------- /website_logo/models/res_config.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Tecnativa - Antonio Espinosa 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class WebsiteConfigSettings(models.TransientModel): 8 | _inherit = 'res.config.settings' 9 | 10 | logo = fields.Binary(related='website_id.logo', readonly=False) 11 | -------------------------------------------------------------------------------- /website_crm_recaptcha/data/ir_model_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | True 10 | 11 | 12 | -------------------------------------------------------------------------------- /website_form_recaptcha/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | * Already have a form-enabled model (refer to `website_form` docs) 4 | * Set `website_form_recaptcha` to `True` on that model (similar to enabling forms) 5 | * Add an element with the `o_website_form_recaptcha` class anywhere in the form 6 | 7 | Look at `website_crm_recaptcha` module for example implementation. 8 | -------------------------------------------------------------------------------- /website_crm_recaptcha/hooks.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Tecnativa - Jairo Llopis 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). 3 | 4 | 5 | def uninstall_hook(cr, registry): 6 | """Unmark crm.lead as recaptcha model.""" 7 | cr.execute(""" 8 | UPDATE ir_model 9 | SET website_form_recaptcha = FALSE 10 | WHERE model = 'crm.lead' 11 | """) 12 | -------------------------------------------------------------------------------- /website_google_tag_manager/models/website.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 ABF OSIELL 2 | # Copyright 2018 Tecnativa - Cristina Martin R. 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | from odoo import fields, models 6 | 7 | 8 | class Website(models.Model): 9 | _inherit = 'website' 10 | 11 | google_tag_manager_key = fields.Char("Container ID") 12 | -------------------------------------------------------------------------------- /website_cookie_notice/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | To change the cookie message: 2 | 3 | * Go to *Settings > Technical > User Interface > Views*. 4 | * Search for the view called *cookiebanner*. 5 | * Change as you wish. Remember that you will probably lose translations then. 6 | 7 | If you are developing a theme for Odoo, remember that this message has the 8 | ``cc-cookies`` class. You can style it at will too. 9 | -------------------------------------------------------------------------------- /website_legal_page/readme/CONTRIBUTORS.rst: -------------------------------------------------------------------------------- 1 | * Rafael Blasco 2 | * Antonio Espinosa 3 | * Igor Pastor 4 | * Jairo Llopis 5 | * Dave Lasley 6 | * Nicola Malcontenti 7 | * Nicolas JEUDY 8 | * Lorenzo Battistini 9 | -------------------------------------------------------------------------------- /website_form_recaptcha/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | First of all you must obtain 2 | a ReCaptcha v2 key from `Google `_ 3 | 4 | **Global setup** 5 | 6 | * Add site key to `recaptcha.key.site` system parameter 7 | * Add secret key to `recaptcha.key.secret` system parameter 8 | 9 | **Single website setup** 10 | 11 | * Go to website settings 12 | * Set site key and secret key 13 | -------------------------------------------------------------------------------- /website_snippet_anchor/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module extends the functionality of the website editor to support setting 2 | an anchor to any section of your web page and allow you to link to them very 3 | easily. 4 | 5 | Anchors are just the HTML ``id`` attribute, which is commonly used to add it 6 | to any URL and get directly to the element with that anchor, in the form of 7 | https://www.tecnativa.com/#anchor-name. 8 | -------------------------------------------------------------------------------- /website_cookie_notice/readme/ROADMAP.rst: -------------------------------------------------------------------------------- 1 | * Before version 8.0.2.0.0 of this module, users had the ability to configure 2 | the message functionality and appearance from the main company form. 3 | 4 | Now, the message is generated in a view. This means that after upgrading to 5 | >= 8.0.2.0.0 you will lose your previous customized messages. If you want to 6 | customize it, please follow steps in the configuration section. 7 | -------------------------------------------------------------------------------- /website_form_builder/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Go to any of your website pages. 4 | #. Edit it. 5 | #. Drag and drop the *Form* snippet into the page. 6 | #. Use the snippet overlay to add, edit and remove fields. 7 | #. If you want to set a hidden field, make sure you set a valid default value 8 | on it, or users may get hidden errors and they might even be unable to send 9 | the form! 10 | -------------------------------------------------------------------------------- /website_breadcrumb/readme/USAGE.rst: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | #. Log in. 4 | #. Go to your homepage. 5 | #. Go to **Customize** menu. 6 | #. Enable **Breadcrumbs** (it is enabled by default). 7 | 8 | * If you want to use this module in a theme but you do not like where it is 9 | rendered, you can simply disable it in the top menu and add in you own 10 | layout a ```` element. 11 | -------------------------------------------------------------------------------- /website_canonical_url/models/res_config.py: -------------------------------------------------------------------------------- 1 | # Copyright 2018 Simone Orsi 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import models, fields 5 | 6 | 7 | class WebsiteConfigSettings(models.TransientModel): 8 | 9 | _inherit = 'res.config.settings' 10 | 11 | canonical_domain = fields.Char( 12 | related='website_id.canonical_domain', 13 | readonly=False) 14 | -------------------------------------------------------------------------------- /website_no_crawler/i18n/website_no_crawler.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: <>\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | 15 | -------------------------------------------------------------------------------- /website_img_dimension/i18n/website_img_dimension.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: <>\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | 15 | -------------------------------------------------------------------------------- /website_odoo_debranding/i18n/website_odoo_debranding.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: <>\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | 15 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/i18n/website_crm_privacy_policy.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: <>\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | 15 | -------------------------------------------------------------------------------- /website_js_below_the_fold/i18n/website_js_below_the_fold.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: <>\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | 15 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/readme/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | This module extends the functionality of blogs to support having a more 2 | attractive layout that automatically displays an excerpt of each post, a "Read 3 | more" button and the chosen social share image (which will default to the 1st 4 | one in the post content if there's no cover). 5 | 6 | It looks like this: 7 | 8 | .. figure:: ../static/description/post-list.png 9 | :alt: Beautiful blog post list screenshot 10 | -------------------------------------------------------------------------------- /website_js_below_the_fold_payment/i18n/website_js_below_the_fold_payment.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: <>\n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | 15 | -------------------------------------------------------------------------------- /website_crm_quick_answer/readme/CONFIGURE.rst: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | #. Go to **Settings > Technical > Automation > Automated actions > Quick response 4 | to website contact form** and edit anything there. 5 | 6 | Quicker way to just change the email template (something that most likely you 7 | will want to do): 8 | 9 | #. Go to **Settings > Technical > Email > Templates** 10 | #. Edit the template called *Quick response to website contact form*. 11 | -------------------------------------------------------------------------------- /website_img_dimension/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | -------------------------------------------------------------------------------- /website_no_crawler/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | -------------------------------------------------------------------------------- /website_odoo_debranding/i18n/id.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: id\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/readme/CREDITS.rst: -------------------------------------------------------------------------------- 1 | Icon 2 | ---- 3 | 4 | Icon based on ```johnny-automatic-scales-of-justice.svg``` from 5 | [Openclipart](https://openclipart.org/detail/26849/scales-of-justice) and 6 | ```jetxee-check-sign-and-cross-sign.svg``` from 7 | [Openclipart](https://openclipart.org/detail/11118/check-sign-and-cross-sign) 8 | 9 | Thanks to: 10 | * [johnny_automatic](https://openclipart.org/user-detail/johnny_automatic) 11 | * [jetxee](https://openclipart.org/user-detail/jetxee) 12 | -------------------------------------------------------------------------------- /website_img_dimension/i18n/ca.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: ca\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | -------------------------------------------------------------------------------- /website_img_dimension/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: es\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | -------------------------------------------------------------------------------- /website_js_below_the_fold/i18n/ca.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: ca\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | -------------------------------------------------------------------------------- /website_js_below_the_fold/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: es\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | -------------------------------------------------------------------------------- /website_js_below_the_fold/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | -------------------------------------------------------------------------------- /website_odoo_debranding/i18n/ca.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: ca\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | -------------------------------------------------------------------------------- /website_odoo_debranding/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: es\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 15 | -------------------------------------------------------------------------------- /website_odoo_debranding/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | -------------------------------------------------------------------------------- /website_img_dimension/i18n/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 12.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: Automatically generated\n" 9 | "Language-Team: none\n" 10 | "Language: pt_BR\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 15 | -------------------------------------------------------------------------------- /website_img_dimension/templates/assets.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 21 | 22 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/mn.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" 15 | "Language: mn\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Гэр" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/nl.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" 15 | "Language: nl\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Thuis" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/sv.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" 15 | "Language: sv\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Hemma" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/fi.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" 15 | "Language: fi\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Alkuun" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/gl.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" 15 | "Language: gl\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Inicio" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/hu.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" 15 | "Language: hu\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Kezdőlap" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/el.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" 15 | "Language: el\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Αρχική σελίδα" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/it.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" 15 | "Language: it\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Home" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "Menu del sito" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/pt.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" 15 | "Language: pt\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Página Inicial" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" 15 | "zh_CN/)\n" 16 | "Language: zh_CN\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=1; plural=0;\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "首页" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_megamenu/static/src/xml/website.contentMenu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | Add Mega Menu Item 8 | 9 |
10 |
11 | 12 | 13 | submenu.is_mega_menu ? true : undefined 16 | 17 | 18 | Mega Menu 22 | 23 | 24 |
25 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/de.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" 15 | "Language: de\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Anfangsseite" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "Webseitenmenü" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" 15 | "Language: es\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Inicio" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "Menú del sitio web" 30 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/i18n/ca.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_crm_privacy_policy 4 | # 5 | # Translators: 6 | # Carles Antolí , 2015 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: website (8.0)\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2015-11-23 10:22+0000\n" 12 | "PO-Revision-Date: 2015-11-18 21:16+0000\n" 13 | "Last-Translator: Carles Antolí \n" 14 | "Language-Team: Catalan (http://www.transifex.com/oca/OCA-website-8-0/" 15 | "language/ca/)\n" 16 | "Language: ca\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #~ msgid "I have read and accept the" 23 | #~ msgstr "He llegit i accepto la" 24 | 25 | #~ msgid "Privacy Policy" 26 | #~ msgstr "Política de Privacitat" 27 | 28 | #~ msgid "You must accept our Privacy Policy." 29 | #~ msgstr "Ha d'acceptar la nostra Política de privacitat." 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/es_MX.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" 15 | "es_MX/)\n" 16 | "Language: es_MX\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Casa" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/i18n/de.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_crm_privacy_policy 4 | # 5 | # Translators: 6 | # Rudolf Schnapka , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: website (8.0)\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-02-25 14:25+0000\n" 12 | "PO-Revision-Date: 2016-02-24 22:30+0000\n" 13 | "Last-Translator: Rudolf Schnapka \n" 14 | "Language-Team: German (http://www.transifex.com/oca/OCA-website-8-0/language/" 15 | "de/)\n" 16 | "Language: de\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #~ msgid "I have read and accept the" 23 | #~ msgstr "Gelesen und Zustimmung zum" 24 | 25 | #~ msgid "Privacy Policy" 26 | #~ msgstr "Regelwerk zur Privatsphäre" 27 | 28 | #~ msgid "You must accept our Privacy Policy." 29 | #~ msgstr "Sie müssen unser Regelwerk zur Privatsphäre akzeptieren." 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/es_CR.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" 15 | "teams/23907/es_CR/)\n" 16 | "Language: es_CR\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Casa" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/es_VE.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" 15 | "teams/23907/es_VE/)\n" 16 | "Language: es_VE\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Casa" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/i18n/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_crm_privacy_policy 4 | # 5 | # Translators: 6 | # danimaribeiro , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: website (8.0)\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-03-12 02:17+0000\n" 12 | "PO-Revision-Date: 2016-03-05 18:09+0000\n" 13 | "Last-Translator: danimaribeiro \n" 14 | "Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" 15 | "website-8-0/language/pt_BR/)\n" 16 | "Language: pt_BR\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 21 | 22 | #~ msgid "I have read and accept the" 23 | #~ msgstr "Eu li e aceito o" 24 | 25 | #~ msgid "Privacy Policy" 26 | #~ msgstr "Politica de privacidade" 27 | 28 | #~ msgid "You must accept our Privacy Policy." 29 | #~ msgstr "Você deve aceitar nossa Política de Privacidade" 30 | -------------------------------------------------------------------------------- /website_legal_page/tests/test_controller.py: -------------------------------------------------------------------------------- 1 | # Copyright 2017 LasLabs Inc. 2 | # License APL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo.tests.common import HttpCase 5 | from odoo.tools import mute_logger 6 | 7 | 8 | class TestController(HttpCase): 9 | def _test_page(self, page, code=200): 10 | response = self.url_open(page, timeout=20) 11 | self.assertEqual(response.status_code, code) 12 | 13 | @mute_logger("odoo.addons.website.models.ir_ui_view") 14 | def test_unknown(self): 15 | """ It should return a 404 for unknown pages. """ 16 | self._test_page('/legal/no-page', 404) 17 | 18 | def test_privacy(self): 19 | """ It should return a 200 for privacy policy page. """ 20 | self._test_page('/legal/privacy-policy') 21 | 22 | def test_advice(self): 23 | """ It should return a 200 for advice page. """ 24 | self._test_page('/legal/advice') 25 | 26 | def test_tos(self): 27 | """ It should return a 200 for ToS page. """ 28 | self._test_page('/legal/terms-of-use') 29 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/i18n/bg.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_blog_excerpt_img 4 | # 5 | # Translators: 6 | # Kaloyan Naumov , 2017 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-10-13 00:48+0000\n" 12 | "PO-Revision-Date: 2017-10-13 00:48+0000\n" 13 | "Last-Translator: Kaloyan Naumov , 2017\n" 14 | "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" 15 | "Language: bg\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_blog_excerpt_img 22 | #: model:ir.model,name:website_blog_excerpt_img.model_blog_post 23 | msgid "Blog Post" 24 | msgstr "Блог Пост" 25 | 26 | #. module: website_blog_excerpt_img 27 | #: model_terms:ir.ui.view,arch_db:website_blog_excerpt_img.seo_image_floating 28 | msgid "Read more" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/i18n/de.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_blog_excerpt_img 4 | # 5 | # Translators: 6 | # Rudolf Schnapka , 2017 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-10-13 00:48+0000\n" 12 | "PO-Revision-Date: 2017-10-13 00:48+0000\n" 13 | "Last-Translator: Rudolf Schnapka , 2017\n" 14 | "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" 15 | "Language: de\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_blog_excerpt_img 22 | #: model:ir.model,name:website_blog_excerpt_img.model_blog_post 23 | msgid "Blog Post" 24 | msgstr "Blog-Eintrag" 25 | 26 | #. module: website_blog_excerpt_img 27 | #: model_terms:ir.ui.view,arch_db:website_blog_excerpt_img.seo_image_floating 28 | msgid "Read more" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # Christophe CHAUVET , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: Christophe CHAUVET , 2016\n" 14 | "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" 15 | "Language: fr\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Accueil" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "Menu site internet" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/mk.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" 15 | "Language: mk\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" 20 | 21 | #. module: website_breadcrumb 22 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 23 | msgid "Home" 24 | msgstr "Дома" 25 | 26 | #. module: website_breadcrumb 27 | #: model:ir.model,name:website_breadcrumb.model_website_menu 28 | msgid "Website Menu" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_crm_privacy_policy/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_crm_privacy_policy 4 | # 5 | # Translators: 6 | # Christophe CHAUVET , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: website (8.0)\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-05-06 02:53+0000\n" 12 | "PO-Revision-Date: 2016-05-06 08:39+0000\n" 13 | "Last-Translator: Christophe CHAUVET \n" 14 | "Language-Team: French (http://www.transifex.com/oca/OCA-website-8-0/language/" 15 | "fr/)\n" 16 | "Language: fr\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 21 | 22 | #~ msgid "I have read and accept the" 23 | #~ msgstr "J'ai lu et accepte les" 24 | 25 | #~ msgid "Privacy Policy" 26 | #~ msgstr "Politique de vie privée" 27 | 28 | #~ msgid "You must accept our Privacy Policy." 29 | #~ msgstr "Vous devez accepter note politique de vie privée" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/ca.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2020-09-28 14:00+0000\n" 13 | "Last-Translator: claudiagn \n" 14 | "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" 15 | "Language: ca\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 20 | "X-Generator: Weblate 3.10\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Inici" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "Menú del lloc web" 31 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" 15 | "teams/23907/pt_BR/)\n" 16 | "Language: pt_BR\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Inicio" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "Menu site" 31 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/i18n/it.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_blog_excerpt_img 4 | # 5 | # Translators: 6 | # Paolo Valier , 2017 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-10-13 00:48+0000\n" 12 | "PO-Revision-Date: 2017-10-13 00:48+0000\n" 13 | "Last-Translator: Paolo Valier , 2017\n" 14 | "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" 15 | "Language: it\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_blog_excerpt_img 22 | #: model:ir.model,name:website_blog_excerpt_img.model_blog_post 23 | msgid "Blog Post" 24 | msgstr "Articolo Blog" 25 | 26 | #. module: website_blog_excerpt_img 27 | #: model_terms:ir.ui.view,arch_db:website_blog_excerpt_img.seo_image_floating 28 | msgid "Read more" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/lv.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" 15 | "Language: lv\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " 20 | "2);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Mājas" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/el_GR.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" 15 | "el_GR/)\n" 16 | "Language: el_GR\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Αρχική σελίδα" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "Μενού Iστότοπου" 31 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/ro.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" 15 | "Language: ro\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" 20 | "2:1));\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Acasa" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/i18n/eu.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_blog_excerpt_img 4 | # 5 | # Translators: 6 | # Esther Martín Menéndez , 2017 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-10-13 00:48+0000\n" 12 | "PO-Revision-Date: 2017-10-13 00:48+0000\n" 13 | "Last-Translator: Esther Martín Menéndez , 2017\n" 14 | "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" 15 | "Language: eu\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: website_blog_excerpt_img 22 | #: model:ir.model,name:website_blog_excerpt_img.model_blog_post 23 | msgid "Blog Post" 24 | msgstr "Blog Mezua" 25 | 26 | #. module: website_blog_excerpt_img 27 | #: model_terms:ir.ui.view,arch_db:website_blog_excerpt_img.seo_image_floating 28 | msgid "Read more" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /website_breadcrumb/i18n/pl.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_breadcrumb 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-12-14 03:42+0000\n" 12 | "PO-Revision-Date: 2016-12-14 03:42+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" 15 | "Language: pl\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " 20 | "|| n%100>=20) ? 1 : 2);\n" 21 | 22 | #. module: website_breadcrumb 23 | #: model_terms:ir.ui.view,arch_db:website_breadcrumb.breadcrumb 24 | msgid "Home" 25 | msgstr "Dom" 26 | 27 | #. module: website_breadcrumb 28 | #: model:ir.model,name:website_breadcrumb.model_website_menu 29 | msgid "Website Menu" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /website_blog_excerpt_img/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * website_blog_excerpt_img 4 | # 5 | # Translators: 6 | # Jeffery CHEN Fan , 2017 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-10-13 00:48+0000\n" 12 | "PO-Revision-Date: 2019-10-18 18:32+0000\n" 13 | "Last-Translator: 黎伟杰 <674416404@qq.com>\n" 14 | "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" 15 | "zh_CN/)\n" 16 | "Language: zh_CN\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=1; plural=0;\n" 21 | "X-Generator: Weblate 3.8\n" 22 | 23 | #. module: website_blog_excerpt_img 24 | #: model:ir.model,name:website_blog_excerpt_img.model_blog_post 25 | msgid "Blog Post" 26 | msgstr "博客博文" 27 | 28 | #. module: website_blog_excerpt_img 29 | #: model_terms:ir.ui.view,arch_db:website_blog_excerpt_img.seo_image_floating 30 | msgid "Read more" 31 | msgstr "阅读更多" 32 | --------------------------------------------------------------------------------