From 0578ef7638630193c1dee91d0ffdb7d54efaef84 Mon Sep 17 00:00:00 2001 From: Ernad Husremovic Date: Fri, 29 Aug 2025 15:43:06 +0200 Subject: [PATCH] Initial commit: OCA Website packages (16 packages) --- README.md | 62 ++ .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_analytics_matomo/README.rst | 138 +++ .../website_analytics_matomo/__init__.py | 4 + .../website_analytics_matomo/__manifest__.py | 20 + .../website_analytics_matomo/i18n/af.po | 129 +++ .../website_analytics_matomo/i18n/ar.po | 130 +++ .../website_analytics_matomo/i18n/bg.po | 129 +++ .../website_analytics_matomo/i18n/bs.po | 67 ++ .../website_analytics_matomo/i18n/ca.po | 129 +++ .../website_analytics_matomo/i18n/cs.po | 129 +++ .../website_analytics_matomo/i18n/da.po | 129 +++ .../website_analytics_matomo/i18n/de.po | 133 +++ .../website_analytics_matomo/i18n/el.po | 129 +++ .../website_analytics_matomo/i18n/el_GR.po | 133 +++ .../website_analytics_matomo/i18n/en_GB.po | 129 +++ .../website_analytics_matomo/i18n/es.po | 132 +++ .../website_analytics_matomo/i18n/es_AR.po | 129 +++ .../website_analytics_matomo/i18n/es_CL.po | 130 +++ .../website_analytics_matomo/i18n/es_CO.po | 129 +++ .../website_analytics_matomo/i18n/es_CR.po | 129 +++ .../website_analytics_matomo/i18n/es_DO.po | 130 +++ .../website_analytics_matomo/i18n/es_EC.po | 129 +++ .../website_analytics_matomo/i18n/es_MX.po | 129 +++ .../website_analytics_matomo/i18n/es_PE.po | 129 +++ .../website_analytics_matomo/i18n/es_VE.po | 123 +++ .../website_analytics_matomo/i18n/et.po | 129 +++ .../website_analytics_matomo/i18n/eu.po | 132 +++ .../website_analytics_matomo/i18n/fa.po | 129 +++ .../website_analytics_matomo/i18n/fi.po | 129 +++ .../website_analytics_matomo/i18n/fr.po | 143 +++ .../website_analytics_matomo/i18n/gl.po | 129 +++ .../website_analytics_matomo/i18n/he.po | 129 +++ .../website_analytics_matomo/i18n/hr.po | 130 +++ .../website_analytics_matomo/i18n/hr_HR.po | 130 +++ .../website_analytics_matomo/i18n/hu.po | 129 +++ .../website_analytics_matomo/i18n/id.po | 129 +++ .../website_analytics_matomo/i18n/it.po | 150 +++ .../website_analytics_matomo/i18n/ja.po | 129 +++ .../website_analytics_matomo/i18n/ka.po | 129 +++ .../website_analytics_matomo/i18n/kab.po | 129 +++ .../website_analytics_matomo/i18n/ko.po | 129 +++ .../website_analytics_matomo/i18n/lt.po | 130 +++ .../website_analytics_matomo/i18n/lv.po | 130 +++ .../website_analytics_matomo/i18n/mk.po | 129 +++ .../website_analytics_matomo/i18n/mn.po | 129 +++ .../website_analytics_matomo/i18n/nb.po | 140 +++ .../website_analytics_matomo/i18n/nl.po | 129 +++ .../website_analytics_matomo/i18n/nl_NL.po | 144 +++ .../website_analytics_matomo/i18n/pl.po | 131 +++ .../website_analytics_matomo/i18n/pt_BR.po | 140 +++ .../website_analytics_matomo/i18n/ru.po | 131 +++ .../website_analytics_matomo/i18n/sk.po | 129 +++ .../website_analytics_matomo/i18n/sl.po | 142 +++ .../website_analytics_matomo/i18n/sr.po | 130 +++ .../website_analytics_matomo/i18n/sr@latin.po | 130 +++ .../website_analytics_matomo/i18n/sv.po | 129 +++ .../website_analytics_matomo/i18n/th.po | 129 +++ .../website_analytics_matomo/i18n/tr.po | 129 +++ .../website_analytics_matomo/i18n/uk.po | 130 +++ .../website_analytics_matomo/i18n/vi.po | 129 +++ .../i18n/website_analytics_matomo.pot | 122 +++ .../i18n/website_analytics_piwik.pot | 67 ++ .../website_analytics_matomo/i18n/zh_CN.po | 129 +++ .../website_analytics_matomo/i18n/zh_TW.po | 129 +++ .../models/__init__.py | 5 + .../models/res_config_settings.py | 30 + .../models/website.py | 67 ++ .../readme/CONFIGURE.rst | 51 + .../readme/CONTRIBUTORS.rst | 2 + .../readme/DESCRIPTION.rst | 6 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 478 ++++++++++ .../tests/__init__.py | 1 + .../tests/test_analytics_matomo.py | 110 +++ .../views/res_config_settings.xml | 91 ++ .../views/templates.xml | 42 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 12 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_cookiebot/README.rst | 114 +++ .../website_cookiebot/__init__.py | 4 + .../website_cookiebot/__manifest__.py | 18 + .../website_cookiebot/i18n/bs.po | 92 ++ .../website_cookiebot/i18n/de.po | 107 +++ .../website_cookiebot/i18n/es.po | 117 +++ .../website_cookiebot/i18n/it.po | 104 ++ .../i18n/website_cookiebot.pot | 92 ++ .../migrations/16.0.2.0.0/post-migrate.py | 10 + .../website_cookiebot/models/__init__.py | 3 + .../website_cookiebot/models/website.py | 14 + .../website_cookiebot/readme/CONFIGURE.rst | 11 + .../website_cookiebot/readme/CONTRIBUTORS.rst | 8 + .../website_cookiebot/readme/DESCRIPTION.rst | 2 + .../website_cookiebot/readme/USAGE.rst | 10 + .../static/description/icon.png | Bin 0 -> 4133 bytes .../static/description/index.html | 100 ++ .../static/description/screenshot.png | Bin 0 -> 40223 bytes .../website_cookiebot/templates/assets.xml | 30 + .../website_cookiebot/templates/website.xml | 49 + .../website_cookiebot/wizards/__init__.py | 1 + .../wizards/res_config_settings.py | 32 + .../wizards/res_config_settings_views.xml | 59 ++ .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_cookiefirst/README.rst | 95 ++ .../website_cookiefirst/__init__.py | 1 + .../website_cookiefirst/__manifest__.py | 18 + .../data/cookies_policy.xml | 36 + .../website_cookiefirst/i18n/bs.po | 66 ++ .../website_cookiefirst/i18n/de.po | 71 ++ .../website_cookiefirst/i18n/es.po | 70 ++ .../website_cookiefirst/i18n/it.po | 69 ++ .../i18n/website_cookiefirst.pot | 66 ++ .../website_cookiefirst/models/__init__.py | 2 + .../models/res_config_settings.py | 29 + .../website_cookiefirst/models/website.py | 13 + .../website_cookiefirst/readme/CONFIGURE.rst | 8 + .../readme/CONTRIBUTORS.rst | 2 + .../readme/DESCRIPTION.rst | 3 + .../static/description/icon.png | Bin 0 -> 8975 bytes .../static/description/index.html | 451 +++++++++ .../views/res_config_settings_views.xml | 38 + .../views/website_template.xml | 27 + .../README.md | 47 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 6 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 43 + .../website_crm_privacy_policy/README.rst | 118 +++ .../website_crm_privacy_policy/__init__.py | 0 .../__manifest__.py | 15 + .../website_crm_privacy_policy/i18n/bs.po | 21 + .../website_crm_privacy_policy/i18n/ca.po | 36 + .../website_crm_privacy_policy/i18n/de.po | 36 + .../website_crm_privacy_policy/i18n/el_GR.po | 35 + .../website_crm_privacy_policy/i18n/es.po | 38 + .../website_crm_privacy_policy/i18n/fr.po | 36 + .../website_crm_privacy_policy/i18n/it.po | 39 + .../website_crm_privacy_policy/i18n/pt_BR.po | 39 + .../website_crm_privacy_policy/i18n/ru.po | 34 + .../website_crm_privacy_policy/i18n/sl.po | 37 + .../i18n/website_crm_privacy_policy.pot | 21 + .../readme/CONTRIBUTORS.rst | 15 + .../readme/CREDITS.rst | 11 + .../readme/DESCRIPTION.rst | 8 + .../readme/USAGE.rst | 1 + .../static/description/icon.png | Bin 0 -> 2591 bytes .../static/description/index.html | 463 +++++++++ .../templates/contactus.xml | 33 + .../README.md | 47 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 6 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 43 + .../website_crm_quick_answer/README.rst | 114 +++ .../website_crm_quick_answer/__init__.py | 0 .../website_crm_quick_answer/__manifest__.py | 17 + .../data/base_automation_data.xml | 38 + .../website_crm_quick_answer/i18n/bs.po | 42 + .../website_crm_quick_answer/i18n/es.po | 93 ++ .../website_crm_quick_answer/i18n/it.po | 92 ++ .../i18n/website_crm_quick_answer.pot | 42 + .../readme/CONFIGURE.rst | 10 + .../readme/CONTRIBUTORS.rst | 16 + .../readme/DESCRIPTION.rst | 3 + .../website_crm_quick_answer/readme/USAGE.rst | 3 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 459 +++++++++ .../README.md | 47 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 6 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 43 + .../website_form_require_legal/README.rst | 98 ++ .../website_form_require_legal/__init__.py | 0 .../__manifest__.py | 24 + .../website_form_require_legal/i18n/bs.po | 40 + .../website_form_require_legal/i18n/de.po | 43 + .../website_form_require_legal/i18n/es.po | 44 + .../website_form_require_legal/i18n/it.po | 43 + .../i18n/website_form_require_legal.pot | 40 + .../readme/CONTRIBUTORS.rst | 3 + .../readme/DESCRIPTION.rst | 1 + .../readme/ROADMAP.rst | 2 + .../readme/USAGE.rst | 10 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 443 +++++++++ .../static/src/js/options.js | 57 ++ .../static/src/scss/website_form_legal.scss | 8 + .../static/src/xml/website_form_editor.xml | 33 + .../views/snippets.xml | 15 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_forum_subscription/README.rst | 91 ++ .../website_forum_subscription/__init__.py | 0 .../__manifest__.py | 16 + .../website_forum_subscription/i18n/bs.po | 34 + .../website_forum_subscription/i18n/es.po | 47 + .../website_forum_subscription/i18n/it.po | 44 + .../i18n/website_forum_subscription.pot | 34 + .../readme/CONTRIBUTORS.rst | 5 + .../readme/DESCRIPTION.rst | 1 + .../readme/USAGE.rst | 7 + .../static/description/icon.png | Bin 0 -> 8121 bytes .../static/description/index.html | 438 +++++++++ .../templates/website_forum_templates.xml | 68 ++ .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_google_tag_manager/README.rst | 92 ++ .../website_google_tag_manager/__init__.py | 3 + .../__manifest__.py | 17 + .../website_google_tag_manager/i18n/af.po | 64 ++ .../website_google_tag_manager/i18n/ar.po | 65 ++ .../website_google_tag_manager/i18n/bg.po | 64 ++ .../website_google_tag_manager/i18n/bs.po | 59 ++ .../website_google_tag_manager/i18n/ca.po | 64 ++ .../website_google_tag_manager/i18n/cs.po | 64 ++ .../website_google_tag_manager/i18n/da.po | 64 ++ .../website_google_tag_manager/i18n/de.po | 64 ++ .../website_google_tag_manager/i18n/el.po | 64 ++ .../website_google_tag_manager/i18n/el_GR.po | 65 ++ .../website_google_tag_manager/i18n/en_GB.po | 65 ++ .../website_google_tag_manager/i18n/es.po | 70 ++ .../website_google_tag_manager/i18n/es_AR.po | 71 ++ .../website_google_tag_manager/i18n/es_CL.po | 65 ++ .../website_google_tag_manager/i18n/es_CO.po | 65 ++ .../website_google_tag_manager/i18n/es_CR.po | 65 ++ .../website_google_tag_manager/i18n/es_DO.po | 65 ++ .../website_google_tag_manager/i18n/es_EC.po | 65 ++ .../website_google_tag_manager/i18n/es_MX.po | 65 ++ .../website_google_tag_manager/i18n/es_PE.po | 65 ++ .../website_google_tag_manager/i18n/et.po | 64 ++ .../website_google_tag_manager/i18n/eu.po | 64 ++ .../website_google_tag_manager/i18n/fa.po | 64 ++ .../website_google_tag_manager/i18n/fi.po | 64 ++ .../website_google_tag_manager/i18n/fr.po | 70 ++ .../website_google_tag_manager/i18n/fr_FR.po | 67 ++ .../website_google_tag_manager/i18n/gl.po | 64 ++ .../website_google_tag_manager/i18n/he.po | 64 ++ .../website_google_tag_manager/i18n/hr.po | 65 ++ .../website_google_tag_manager/i18n/hr_HR.po | 66 ++ .../website_google_tag_manager/i18n/hu.po | 64 ++ .../website_google_tag_manager/i18n/id.po | 64 ++ .../website_google_tag_manager/i18n/it.po | 72 ++ .../website_google_tag_manager/i18n/ja.po | 64 ++ .../website_google_tag_manager/i18n/ka.po | 64 ++ .../website_google_tag_manager/i18n/kab.po | 64 ++ .../website_google_tag_manager/i18n/ko.po | 64 ++ .../website_google_tag_manager/i18n/lt.po | 65 ++ .../website_google_tag_manager/i18n/lv.po | 65 ++ .../website_google_tag_manager/i18n/mk.po | 64 ++ .../website_google_tag_manager/i18n/mn.po | 64 ++ .../website_google_tag_manager/i18n/nb.po | 65 ++ .../website_google_tag_manager/i18n/nl.po | 64 ++ .../website_google_tag_manager/i18n/pl.po | 65 ++ .../website_google_tag_manager/i18n/pt_BR.po | 71 ++ .../website_google_tag_manager/i18n/ru.po | 66 ++ .../website_google_tag_manager/i18n/sk.po | 64 ++ .../website_google_tag_manager/i18n/sl.po | 65 ++ .../website_google_tag_manager/i18n/sr.po | 65 ++ .../i18n/sr@latin.po | 66 ++ .../website_google_tag_manager/i18n/sv.po | 64 ++ .../website_google_tag_manager/i18n/th.po | 64 ++ .../website_google_tag_manager/i18n/tr.po | 64 ++ .../website_google_tag_manager/i18n/uk.po | 65 ++ .../website_google_tag_manager/i18n/vi.po | 64 ++ .../i18n/website_google_tag_manager.pot | 59 ++ .../website_google_tag_manager/i18n/zh_CN.po | 65 ++ .../website_google_tag_manager/i18n/zh_TW.po | 65 ++ .../models/__init__.py | 4 + .../models/res_config_settings.py | 13 + .../models/website.py | 11 + .../readme/CONFIGURE.rst | 5 + .../readme/CONTRIBUTORS.rst | 5 + .../readme/DESCRIPTION.rst | 3 + .../static/description/icon.png | Bin 0 -> 759 bytes .../static/description/index.html | 440 +++++++++ .../website_google_tag_manager.jpg | Bin 0 -> 27372 bytes .../views/res_config_settings_view.xml | 56 ++ .../views/website_templates.xml | 38 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_legal_page/README.rst | 148 +++ .../website_legal_page/__init__.py | 1 + .../website_legal_page/__manifest__.py | 19 + .../website_legal_page/i18n/bg.po | 261 +++++ .../website_legal_page/i18n/bs.po | 233 +++++ .../website_legal_page/i18n/ca.po | 271 ++++++ .../website_legal_page/i18n/de.po | 902 ++++++++++++++++++ .../website_legal_page/i18n/el_GR.po | 274 ++++++ .../website_legal_page/i18n/es.po | 756 +++++++++++++++ .../website_legal_page/i18n/es_AR.po | 337 +++++++ .../website_legal_page/i18n/fr.po | 276 ++++++ .../website_legal_page/i18n/hr_HR.po | 278 ++++++ .../website_legal_page/i18n/it.po | 467 +++++++++ .../website_legal_page/i18n/nb_NO.po | 273 ++++++ .../website_legal_page/i18n/pt_BR.po | 782 +++++++++++++++ .../website_legal_page/i18n/pt_PT.po | 277 ++++++ .../website_legal_page/i18n/ru.po | 263 +++++ .../website_legal_page/i18n/sl.po | 274 ++++++ .../i18n/website_legal_page.pot | 233 +++++ .../readme/CONTRIBUTORS.rst | 18 + .../website_legal_page/readme/CREDITS.rst | 15 + .../website_legal_page/readme/DESCRIPTION.rst | 2 + .../website_legal_page/readme/USAGE.rst | 29 + .../static/description/icon.png | Bin 0 -> 2507 bytes .../static/description/index.html | 489 ++++++++++ .../johnny-automatic-scales-of-justice.svg | 50 + .../static/src/css/website_legal_page.scss | 6 + .../website_legal_page/tests/__init__.py | 3 + .../tests/test_controller.py | 12 + .../views/website_legal_main_page.xml | 414 ++++++++ .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 12 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_menu_by_user_status/README.rst | 98 ++ .../website_menu_by_user_status/__init__.py | 3 + .../__manifest__.py | 14 + .../website_menu_by_user_status/i18n/bs.po | 43 + .../website_menu_by_user_status/i18n/ca.po | 50 + .../website_menu_by_user_status/i18n/es.po | 49 + .../website_menu_by_user_status/i18n/es_AR.po | 59 ++ .../website_menu_by_user_status/i18n/it.po | 59 ++ .../i18n/website_menu_by_user_status.pot | 43 + .../models/__init__.py | 3 + .../models/website_menu.py | 41 + .../readme/CONTRIBUTORS.rst | 5 + .../readme/DESCRIPTION.rst | 3 + .../readme/ROADMAP.rst | 1 + .../readme/USAGE.rst | 7 + .../static/description/icon.png | Bin 0 -> 7439 bytes .../static/description/index.html | 447 +++++++++ .../tests/__init__.py | 4 + .../tests/test_website_menu.py | 57 ++ .../views/website_menu.xml | 27 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_odoo_debranding/README.rst | 93 ++ .../website_odoo_debranding/__init__.py | 3 + .../website_odoo_debranding/__manifest__.py | 14 + .../website_odoo_debranding/hooks.py | 18 + .../website_odoo_debranding/i18n/es_AR.po | 0 .../website_odoo_debranding/i18n/it.po | 14 + .../i18n/website_odoo_debranding.pot | 13 + .../readme/CONTRIBUTORS.rst | 10 + .../readme/DESCRIPTION.rst | 3 + .../website_odoo_debranding/readme/USAGE.rst | 2 + .../static/description/icon.png | Bin 0 -> 4141 bytes .../static/description/index.html | 439 +++++++++ .../templates/disable_odoo.xml | 15 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_recaptcha_v2/README.rst | 106 ++ .../website_recaptcha_v2/__init__.py | 7 + .../website_recaptcha_v2/__manifest__.py | 27 + .../website_recaptcha_v2/demo/demo.xml | 22 + .../website_recaptcha_v2/i18n/bs.po | 136 +++ .../website_recaptcha_v2/i18n/it.po | 144 +++ .../i18n/website_recaptcha_v2.pot | 136 +++ .../website_recaptcha_v2/models/__init__.py | 9 + .../models/res_config_settings.py | 23 + .../website_recaptcha_v2/models/website.py | 77 ++ .../website_recaptcha_v2/readme/CONFIGURE.rst | 3 + .../readme/CONTRIBUTORS.rst | 15 + .../readme/DESCRIPTION.rst | 8 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 451 +++++++++ .../static/description/recaptcha_ico.png | Bin 0 -> 2228 bytes .../website_recaptcha_v2/tests/__init__.py | 5 + .../tests/test_recaptcha.py | 128 +++ .../views/res_config_settings_view.xml | 81 ++ .../views/website_templates.xml | 22 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 34 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_require_login/README.rst | 84 ++ .../website_require_login/__init__.py | 4 + .../website_require_login/__manifest__.py | 21 + .../website_require_login/data/ir_actions.xml | 12 + .../website_require_login/data/ir_ui_menu.xml | 12 + .../website_require_login/i18n/bs.po | 83 ++ .../website_require_login/i18n/de.po | 88 ++ .../website_require_login/i18n/es.po | 88 ++ .../website_require_login/i18n/it.po | 88 ++ .../i18n/website_require_login.pot | 83 ++ .../website_require_login/models/__init__.py | 5 + .../website_require_login/models/ir_http.py | 48 + .../models/website_auth_url.py | 30 + .../readme/CONTRIBUTORS.rst | 1 + .../readme/DESCRIPTION.rst | 1 + .../website_require_login/readme/USAGE.rst | 3 + .../security/ir.model.access.csv | 2 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 428 +++++++++ .../website_require_login/tests/__init__.py | 1 + .../tests/test_ir_http.py | 37 + .../views/website_auth_url.xml | 15 + .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../README.rst | 135 +++ .../__init__.py | 2 + .../__manifest__.py | 32 + .../demo/pages.xml | 92 ++ .../i18n/bs.po | 64 ++ .../i18n/es.po | 71 ++ .../i18n/fr.po | 74 ++ .../i18n/it.po | 68 ++ .../i18n/sl.po | 71 ++ .../i18n/website_snippet_country_dropdown.pot | 64 ++ .../readme/CONTRIBUTORS.rst | 7 + .../readme/DESCRIPTION.rst | 4 + .../readme/ROADMAP.rst | 5 + .../readme/USAGE.rst | 37 + .../static/description/icon.png | Bin 0 -> 5885 bytes .../static/description/index.html | 480 ++++++++++ .../static/src/css/style.scss | 10 + .../src/js/web_tour_country_dropdown.js | 68 ++ .../js/website_snippet_country_dropdown.js | 75 ++ .../static/src/xml/country_dropdown.xml | 17 + .../tests/__init__.py | 4 + .../tests/test_snippet_country_dropdown.py | 10 + .../views/snippets.xml | 114 +++ .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 11 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../README.rst | 126 +++ .../__init__.py | 1 + .../__manifest__.py | 27 + .../demo/pages.xml | 100 ++ .../i18n/bs.po | 49 + .../i18n/it.po | 50 + ...te_snippet_country_phone_code_dropdown.pot | 49 + .../readme/CONTRIBUTORS.rst | 1 + .../readme/DESCRIPTION.rst | 5 + .../readme/USAGE.rst | 42 + .../static/description/icon.png | Bin 0 -> 10254 bytes .../static/description/index.html | 473 +++++++++ .../static/src/css/style.scss | 6 + .../web_tour_country_phone_code_dropdown.js | 72 ++ ...ite_snippet_country_phone_code_dropdown.js | 75 ++ .../tests/__init__.py | 3 + ...est_snippet_country_phone_code_dropdown.py | 11 + .../views/snippets.xml | 119 +++ .../README.md | 46 + .../doc/ARCHITECTURE.md | 32 + .../doc/CONFIGURATION.md | 3 + .../doc/CONTROLLERS.md | 3 + .../doc/DEPENDENCIES.md | 5 + .../doc/FAQ.md | 4 + .../doc/INSTALL.md | 7 + .../doc/MODELS.md | 13 + .../doc/OVERVIEW.md | 6 + .../doc/REPORTS.md | 3 + .../doc/SECURITY.md | 8 + .../doc/TROUBLESHOOTING.md | 5 + .../doc/USAGE.md | 7 + .../doc/WIZARDS.md | 3 + .../pyproject.toml | 42 + .../website_whatsapp/README.rst | 94 ++ .../website_whatsapp/__init__.py | 1 + .../website_whatsapp/__manifest__.py | 21 + .../website_whatsapp/i18n/bs.po | 84 ++ .../website_whatsapp/i18n/es.po | 90 ++ .../website_whatsapp/i18n/it.po | 91 ++ .../i18n/website_whatsapp.pot | 84 ++ .../website_whatsapp/models/__init__.py | 2 + .../models/res_config_settings.py | 36 + .../website_whatsapp/models/website.py | 36 + .../website_whatsapp/readme/CONFIGURE.rst | 5 + .../website_whatsapp/readme/CONTRIBUTORS.rst | 2 + .../website_whatsapp/readme/DESCRIPTION.rst | 1 + .../static/description/icon.png | Bin 0 -> 29684 bytes .../static/description/index.html | 442 +++++++++ .../static/src/scss/website.scss | 31 + .../website_whatsapp/templates/website.xml | 28 + .../views/res_config_settings.xml | 59 ++ 660 files changed, 37334 insertions(+) create mode 100644 README.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/README.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/README.rst create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__init__.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/af.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ar.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bg.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ca.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/cs.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/da.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el_GR.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/en_GB.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_AR.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CL.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CO.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CR.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_DO.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_EC.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_MX.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_PE.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_VE.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/et.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/eu.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fa.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fi.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fr.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/gl.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/he.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr_HR.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hu.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/id.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ja.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ka.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/kab.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ko.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lt.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lv.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mk.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mn.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nb.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl_NL.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pl.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ru.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sk.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sl.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr@latin.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sv.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/th.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/tr.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/uk.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/vi.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_matomo.pot create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_piwik.pot create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_CN.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_TW.po create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/res_config_settings.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/website.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/test_analytics_matomo.py create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/res_config_settings.xml create mode 100644 odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/templates.xml create mode 100644 odoo-bringout-oca-website-website_cookiebot/README.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_cookiebot/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/README.rst create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/__init__.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/i18n/website_cookiebot.pot create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/migrations/16.0.2.0.0/post-migrate.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/models/website.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/static/description/screenshot.png create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/templates/assets.xml create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/templates/website.xml create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/wizards/__init__.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/wizards/res_config_settings.py create mode 100644 odoo-bringout-oca-website-website_cookiebot/website_cookiebot/wizards/res_config_settings_views.xml create mode 100644 odoo-bringout-oca-website-website_cookiefirst/README.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_cookiefirst/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/README.rst create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/__init__.py create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/data/cookies_policy.xml create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/i18n/website_cookiefirst.pot create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/models/res_config_settings.py create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/models/website.py create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/views/res_config_settings_views.xml create mode 100644 odoo-bringout-oca-website-website_cookiefirst/website_cookiefirst/views/website_template.xml create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/README.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/README.rst create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/__init__.py create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/ca.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/el_GR.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/fr.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/ru.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/sl.po create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/i18n/website_crm_privacy_policy.pot create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/readme/CREDITS.rst create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_crm_privacy_policy/website_crm_privacy_policy/templates/contactus.xml create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/README.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/README.rst create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/__init__.py create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/data/base_automation_data.xml create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/i18n/website_crm_quick_answer.pot create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_crm_quick_answer/website_crm_quick_answer/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_form_require_legal/README.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_form_require_legal/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/README.rst create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/__init__.py create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/i18n/website_form_require_legal.pot create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/readme/ROADMAP.rst create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/static/src/js/options.js create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/static/src/scss/website_form_legal.scss create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/static/src/xml/website_form_editor.xml create mode 100644 odoo-bringout-oca-website-website_form_require_legal/website_form_require_legal/views/snippets.xml create mode 100644 odoo-bringout-oca-website-website_forum_subscription/README.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_forum_subscription/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/README.rst create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/__init__.py create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/i18n/website_forum_subscription.pot create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_forum_subscription/website_forum_subscription/templates/website_forum_templates.xml create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/README.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/README.rst create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/__init__.py create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/af.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/ar.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/bg.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/ca.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/cs.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/da.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/el.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/el_GR.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/en_GB.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_AR.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_CL.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_CO.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_CR.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_DO.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_EC.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_MX.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/es_PE.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/et.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/eu.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/fa.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/fi.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/fr.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/fr_FR.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/gl.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/he.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/hr.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/hr_HR.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/hu.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/id.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/ja.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/ka.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/kab.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/ko.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/lt.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/lv.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/mk.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/mn.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/nb.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/nl.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/pl.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/ru.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/sk.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/sl.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/sr.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/sr@latin.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/sv.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/th.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/tr.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/uk.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/vi.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/website_google_tag_manager.pot create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/zh_CN.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/i18n/zh_TW.po create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/models/res_config_settings.py create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/models/website.py create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/static/description/website_google_tag_manager.jpg create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/views/res_config_settings_view.xml create mode 100644 odoo-bringout-oca-website-website_google_tag_manager/website_google_tag_manager/views/website_templates.xml create mode 100644 odoo-bringout-oca-website-website_legal_page/README.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_legal_page/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_legal_page/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/README.rst create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/__init__.py create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bg.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ca.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/el_GR.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es_AR.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/fr.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/hr_HR.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/nb_NO.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_BR.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_PT.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ru.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/sl.po create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/website_legal_page.pot create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CREDITS.rst create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/static/src/css/website_legal_page.scss create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/test_controller.py create mode 100644 odoo-bringout-oca-website-website_legal_page/website_legal_page/views/website_legal_main_page.xml create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/README.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/README.rst create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__init__.py create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/ca.po create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es_AR.po create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/website_menu_by_user_status.pot create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/website_menu.py create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/ROADMAP.rst create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/test_website_menu.py create mode 100644 odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/views/website_menu.xml create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/README.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/README.rst create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__init__.py create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/hooks.py create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/es_AR.po create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/website_odoo_debranding.pot create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/templates/disable_odoo.xml create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/README.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/README.rst create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__init__.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/demo/demo.xml create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/website_recaptcha_v2.pot create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/res_config_settings.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/website.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/recaptcha_ico.png create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/tests/test_recaptcha.py create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/views/res_config_settings_view.xml create mode 100644 odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/views/website_templates.xml create mode 100644 odoo-bringout-oca-website-website_require_login/README.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_require_login/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_require_login/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/README.rst create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/__init__.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/data/ir_actions.xml create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/data/ir_ui_menu.xml create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/i18n/de.po create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/i18n/website_require_login.pot create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/models/ir_http.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/models/website_auth_url.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/security/ir.model.access.csv create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/tests/test_ir_http.py create mode 100644 odoo-bringout-oca-website-website_require_login/website_require_login/views/website_auth_url.xml create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/README.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/README.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/__init__.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/demo/pages.xml create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/i18n/fr.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/i18n/sl.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/i18n/website_snippet_country_dropdown.pot create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/readme/ROADMAP.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/static/src/css/style.scss create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/static/src/js/web_tour_country_dropdown.js create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/static/src/js/website_snippet_country_dropdown.js create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/static/src/xml/country_dropdown.xml create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/tests/test_snippet_country_dropdown.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_dropdown/website_snippet_country_dropdown/views/snippets.xml create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/README.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/README.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/__init__.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/demo/pages.xml create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/i18n/website_snippet_country_phone_code_dropdown.pot create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/readme/USAGE.rst create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/static/src/css/style.scss create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/static/src/js/web_tour_country_phone_code_dropdown.js create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/static/src/js/website_snippet_country_phone_code_dropdown.js create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/tests/__init__.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/tests/test_snippet_country_phone_code_dropdown.py create mode 100644 odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown/website_snippet_country_phone_code_dropdown/views/snippets.xml create mode 100644 odoo-bringout-oca-website-website_whatsapp/README.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/ARCHITECTURE.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/CONFIGURATION.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/CONTROLLERS.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/DEPENDENCIES.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/FAQ.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/INSTALL.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/MODELS.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/OVERVIEW.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/REPORTS.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/SECURITY.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/TROUBLESHOOTING.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/USAGE.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/doc/WIZARDS.md create mode 100644 odoo-bringout-oca-website-website_whatsapp/pyproject.toml create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/README.rst create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/__init__.py create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/__manifest__.py create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/i18n/bs.po create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/i18n/es.po create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/i18n/it.po create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/i18n/website_whatsapp.pot create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/models/__init__.py create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/models/res_config_settings.py create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/models/website.py create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/readme/CONFIGURE.rst create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/readme/CONTRIBUTORS.rst create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/readme/DESCRIPTION.rst create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/static/description/icon.png create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/static/description/index.html create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/static/src/scss/website.scss create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/templates/website.xml create mode 100644 odoo-bringout-oca-website-website_whatsapp/website_whatsapp/views/res_config_settings.xml diff --git a/README.md b/README.md new file mode 100644 index 0000000..be76453 --- /dev/null +++ b/README.md @@ -0,0 +1,62 @@ +# OCA Website + +This repository contains **16** OCA packages for website. + +## Packages Included (16 packages) + +- **odoo-bringout-oca-website-website_analytics_matomo** - From website: website_analytics_matomo +- **odoo-bringout-oca-website-website_cookiebot** - From website: website_cookiebot +- **odoo-bringout-oca-website-website_cookiefirst** - From website: website_cookiefirst +- **odoo-bringout-oca-website-website_crm_privacy_policy** - From website: website_crm_privacy_policy +- **odoo-bringout-oca-website-website_crm_quick_answer** - From website: website_crm_quick_answer +- **odoo-bringout-oca-website-website_form_require_legal** - From website: website_form_require_legal +- **odoo-bringout-oca-website-website_forum_subscription** - From website: website_forum_subscription +- **odoo-bringout-oca-website-website_google_tag_manager** - From website: website_google_tag_manager +- **odoo-bringout-oca-website-website_legal_page** - From website: website_legal_page +- **odoo-bringout-oca-website-website_menu_by_user_status** - From website: website_menu_by_user_status +- **odoo-bringout-oca-website-website_odoo_debranding** - From website: website_odoo_debranding +- **odoo-bringout-oca-website-website_recaptcha_v2** - From website: website_recaptcha_v2 +- **odoo-bringout-oca-website-website_require_login** - From website: website_require_login +- **odoo-bringout-oca-website-website_snippet_country_dropdown** - From website: website_snippet_country_dropdown +- **odoo-bringout-oca-website-website_snippet_country_phone_code_dropdown** - From website: website_snippet_country_phone_code_dropdown +- **odoo-bringout-oca-website-website_whatsapp** - From website: website_whatsapp + + +## Installation + +Install any package from this category: + +```bash +# Install from local directory +pip install packages/oca-website/PACKAGE_NAME/ + +# Install in development mode +pip install -e packages/oca-website/PACKAGE_NAME/ + +# Using uv (recommended for speed) +uv add packages/oca-website/PACKAGE_NAME/ +``` + +## Repository Structure + +Each package in this repository follows the standard Odoo addon structure: + +``` +oca-website/ +├── odoo-bringout-oca-PROJECT-ADDON/ +│ ├── ADDON_NAME/ # Complete addon code +│ │ ├── __init__.py +│ │ ├── __manifest__.py +│ │ └── ... (models, views, etc.) +│ ├── pyproject.toml # Python package configuration +│ └── README.md # Package documentation +└── ... +``` + +## Contributing + +These packages are maintained as part of the [OCA (Odoo Community Association)](https://github.com/OCA) ecosystem. + +## License + +Each package maintains its original license as specified in the OCA repositories. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/README.md b/odoo-bringout-oca-website-website_analytics_matomo/README.md new file mode 100644 index 0000000..4578413 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/README.md @@ -0,0 +1,46 @@ +# Matomo analytics + +Odoo addon: website_analytics_matomo + +## Installation + +```bash +pip install odoo-bringout-oca-website-website_analytics_matomo +``` + +## Dependencies + +This addon depends on: +- website + +## Manifest Information + +- **Name**: Matomo analytics +- **Version**: 16.0.1.0.0 +- **Category**: Website +- **License**: AGPL-3 +- **Installable**: True + +## Source + +Based on [OCA/website](https://github.com/OCA/website) branch 16.0, addon `website_analytics_matomo`. + +## License + +This package maintains the original AGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Reports: doc/REPORTS.md +- Security: doc/SECURITY.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/ARCHITECTURE.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/ARCHITECTURE.md new file mode 100644 index 0000000..b5014c5 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Website_analytics_matomo Module - website_analytics_matomo + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/CONFIGURATION.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/CONFIGURATION.md new file mode 100644 index 0000000..7a88e80 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for website_analytics_matomo. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/CONTROLLERS.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/CONTROLLERS.md new file mode 100644 index 0000000..f628e77 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/CONTROLLERS.md @@ -0,0 +1,3 @@ +# Controllers + +This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/DEPENDENCIES.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/DEPENDENCIES.md new file mode 100644 index 0000000..c1545b8 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/DEPENDENCIES.md @@ -0,0 +1,5 @@ +# Dependencies + +This addon depends on: + +- [website](../../odoo-bringout-oca-ocb-website) diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/FAQ.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/FAQ.md new file mode 100644 index 0000000..e70c38b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon website_analytics_matomo or install in UI. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/INSTALL.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/INSTALL.md new file mode 100644 index 0000000..ef368bb --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-website-website_analytics_matomo" +# or +uv pip install odoo-bringout-oca-website-website_analytics_matomo" +``` diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/MODELS.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/MODELS.md new file mode 100644 index 0000000..c9b02fd --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/MODELS.md @@ -0,0 +1,13 @@ +# Models + +Detected core models and extensions in website_analytics_matomo. + +```mermaid +classDiagram + class res_config_settings + class website +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/OVERVIEW.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/OVERVIEW.md new file mode 100644 index 0000000..dd05614 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: website_analytics_matomo. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon website_analytics_matomo +- License: LGPL-3 diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/REPORTS.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/SECURITY.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/SECURITY.md new file mode 100644 index 0000000..e07da9d --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/SECURITY.md @@ -0,0 +1,8 @@ +# Security + +This module does not define custom security rules or access controls beyond Odoo defaults. + +Default Odoo security applies: +- Base user access through standard groups +- Model access inherited from dependencies +- No custom row-level security rules diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/USAGE.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/USAGE.md new file mode 100644 index 0000000..a126f50 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_analytics_matomo +``` diff --git a/odoo-bringout-oca-website-website_analytics_matomo/doc/WIZARDS.md b/odoo-bringout-oca-website-website_analytics_matomo/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/pyproject.toml b/odoo-bringout-oca-website-website_analytics_matomo/pyproject.toml new file mode 100644 index 0000000..48660fe --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/pyproject.toml @@ -0,0 +1,42 @@ +[project] +name = "odoo-bringout-oca-website-website_analytics_matomo" +version = "16.0.0" +description = "Matomo analytics - Track website users using matomo" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-website>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/0" +repository = "https://github.com/bringout/0" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["website_analytics_matomo"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/README.rst b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/README.rst new file mode 100644 index 0000000..2b3c555 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/README.rst @@ -0,0 +1,138 @@ +================ +Matomo analytics +================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:f3a346379593d7db197fd607e40aa8ce6e9cfa93d882d88c9de993ced8ba4433 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/16.0/website_analytics_matomo + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-16-0/website-16-0-website_analytics_matomo + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to simply configure your odoo website for using Matomo_. + +.. _Matomo: http://matomo.org + +If your website is a webshop, also consider to install the OCA module +`website_sale_analytics_matomo` to enable full Ecommerce reporting with Matomo Analytics. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To configure this module, you need to: + +* go to Settings/General Settings/Website +* enable `Matomo Analytics` +* fill in `Matomo website ID` and `Matomo host` + +At this point your website is already setup for being tracked in Matomo. + +Some more advanced features offered by Matomo can be configured as follows: + +User ID feature +~~~~~~~~~~~~~~~ + +Matomo includes a User ID feature for enhanced tracking on those websites that offer the ability for visitors to log in. +By tracking the User ID (unique identifier), it is possible to connect visitors between visits across multiple dates +and devices. + +To enable this feature, set `Enable User ID`: Matomo will track the user's `ID` (model `res.users`). +If you want to use a different field, eg: user's `name` or `login`, you need to override method `compute_matomo_userid()`. + +Enable a Heartbeat timer +~~~~~~~~~~~~~~~~~~~~~~~~ + +In order to better measure the time spent in the visit, the active page can send additional +ping requests to Matomo. These requests will not track additional actions or page views. +They just allow Matomo to know whether the user is actively viewing the page (the tab +should be active and in focus). + +To enable this feature, set `Enable heartbeat` and define the Active Time. + +By default, the Active Time is set to 15 seconds, meaning only if the page was viewed +for at least 15 seconds (and the user leaves the page or focuses away from the tab) +then a ping request will be sent. + +Matomo Event Tracking +~~~~~~~~~~~~~~~~~~~~~ + +As explained in this page https://matomo.org/faq/reports/implement-event-tracking-with-matomo/ +on the official documentation of Matomo, there are two main ways to set up event tracking within Matomo: + +1. with the "Matomo Tag Manager" feature: this is the easiest and recommended way; +2. by adding snippets of JavaScript code to your website itself. + +The first method is not supported by this module, however in OCA there's +a dedicated module for that purpose: `website_matomo_tag_manager`. + +The second method can be used along with this module and requires a little more technical confidence. +You will need to integrate a JavaScript snippet directly into your website’s code. + +Technical documentation can be found in: +https://developer.matomo.org/guides/tracking-javascript-guide#manually-trigger-events + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Onestein +* Therp BV + +Contributors +~~~~~~~~~~~~ + +* Holger Brunn +* Andrea Stirpe + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/website `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__init__.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__init__.py new file mode 100644 index 0000000..369ae41 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__manifest__.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__manifest__.py new file mode 100644 index 0000000..1a76e78 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Matomo analytics", + "version": "16.0.1.0.0", + "author": "Onestein,Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Website", + "summary": "Track website users using matomo", + "website": "https://github.com/OCA/website", + "depends": [ + "website", + ], + "data": [ + "views/res_config_settings.xml", + "views/templates.xml", + ], + "installable": True, +} diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/af.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/af.po new file mode 100644 index 0000000..017f0c9 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/af.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Afrikaans (http://www.transifex.com/oca/OCA-website-8-0/" +"language/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Webtuiste" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ar.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ar.po new file mode 100644 index 0000000..ac11e6b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ar.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-website-8-0/language/" +"ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "الموقع" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bg.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bg.po new file mode 100644 index 0000000..574084f --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bg.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Уебсайт" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bs.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bs.po new file mode 100644 index 0000000..e1d29dd --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/bs.po @@ -0,0 +1,67 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings_has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website_has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Matomo analitika" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings_matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website_matomo_analytics_host +msgid "Matomo host" +msgstr "Matomo host" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings_matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website_matomo_analytics_id +msgid "Matomo website ID" +msgstr "Matomo ID web sajta" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings_matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website_matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "ID koji Matomo koristi za identifikaciju web sajta" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings_matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website_matomo_analytics_host +msgid "The host/path your Matomo installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/matomo.php should resolve to your matomo.php" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.ui.view,arch_db:website_analytics_matomo.view_website_config_settings +msgid "Track visits in Matomo Analytics" +msgstr "Prati posjete u Matomo analitici" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_analytics_matomo +#: model:ir.ui.view,arch_db:website_analytics_matomo.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_matomo.view_website_form +msgid "host.name/matomo" +msgstr "host.name/matomo" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "res.config.settings" +msgstr "res.config.settings" + diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ca.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ca.po new file mode 100644 index 0000000..054014e --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ca.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-08 09:02+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-website-8-0/" +"language/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Lloc web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/cs.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/cs.po new file mode 100644 index 0000000..10ed7a0 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/cs.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-website-8-0/language/" +"cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Webová stránka" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/da.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/da.po new file mode 100644 index 0000000..77f39da --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/da.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-website-8-0/language/" +"da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Hjemmeside" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/de.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/de.po new file mode 100644 index 0000000..3b7a530 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/de.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-23 10:22+0000\n" +"PO-Revision-Date: 2023-06-20 11:08+0000\n" +"Last-Translator: Nils Coenen \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-website-8-0/language/" +"de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "Aktive Zeit (Sekunden)" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationseinstellungen" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "Benutzer-ID aktivieren" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "Herzschlag aktivieren" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" +"Wie viele Sekunden ein Tab aktiv sein muss, damit er als angezeigt gezählt " +"wird." + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "Matomo Heartbeat aktivieren" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "Matomo-Benutzer-ID aktivieren" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "Matomo Benutzer-ID abrufen" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "Die ID, die Matomo zur Identifizierung der Website verwendet" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" +"Der Host/Pfad, über den Ihre Matomo-Installation im Internet erreichbar ist." + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "Verfolgen Sie Besuche in Matomo Analytics" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Webseite" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el.po new file mode 100644 index 0000000..53a3706 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (http://www.transifex.com/oca/OCA-website-8-0/language/" +"el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Ιστότοπος" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el_GR.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el_GR.po new file mode 100644 index 0000000..99e5c32 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/el_GR.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Ιστότοπος" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "host.name/matomo" +#~ msgstr "host.name/matomo" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/en_GB.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/en_GB.po new file mode 100644 index 0000000..03cf52c --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/en_GB.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es.po new file mode 100644 index 0000000..ecde89b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +# Alberte Moço, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-09-27 12:40+0000\n" +"Last-Translator: Cris Martín \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.1.1\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "website.config.settings" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Matomo Analítica Web" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Host Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "Matomo website ID" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "El ID que usa Matomo para identificar el sitio web" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_AR.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_AR.po new file mode 100644 index 0000000..cbcaef3 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_AR.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CL.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CL.po new file mode 100644 index 0000000..accc640 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CL.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CO.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CO.po new file mode 100644 index 0000000..537c3c9 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CO.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CR.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CR.po new file mode 100644 index 0000000..9bf9d74 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_CR.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_DO.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_DO.po new file mode 100644 index 0000000..acd66f9 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_DO.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_EC.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_EC.po new file mode 100644 index 0000000..4d07f17 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_EC.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_MX.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_MX.po new file mode 100644 index 0000000..e84acce --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_MX.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_PE.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_PE.po new file mode 100644 index 0000000..a1d7051 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_PE.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-website-8-0/" +"language/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_VE.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_VE.po new file mode 100644 index 0000000..77f9e4f --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/es_VE.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least this\n" +" amount of time (and the user leaves the page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/et.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/et.po new file mode 100644 index 0000000..f2296f3 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/et.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:45+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Veebileht" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/eu.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/eu.po new file mode 100644 index 0000000..8d0eca6 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/eu.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "host.name/matomo" +#~ msgstr "host.name/matomo" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fa.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fa.po new file mode 100644 index 0000000..75cc7c9 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fa.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "تارنما" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fi.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fi.po new file mode 100644 index 0000000..b3a1b58 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fi.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-15 18:42+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-website-8-0/" +"language/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Verkkosivut" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fr.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fr.po new file mode 100644 index 0000000..e1f80c0 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/fr.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +# Quentin THEURET , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 03:45+0000\n" +"PO-Revision-Date: 2018-01-16 03:45+0000\n" +"Last-Translator: Quentin THEURET , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "res.config.settings" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Matomo Analytique" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Hébergement MATOMO" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "Id du site internet MATOMO" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "Le ID de Matomo est utilisé pour identifier le site internet" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "Tracer les visites avec Matomo Analytique" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Site Internet" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "" +#~ "The host/path your Matomo installation is accessible by on the internet. " +#~ "Do not include a protocol here!\n" +#~ "So http[s]://[this field]/matomo.php should resolve to your matomo.php" +#~ msgstr "" +#~ "Le chemin de l'hébergement de votre installation Matomo est accessible " +#~ "sur Internet. Cela n'inclue pas pas le protcol de l'hébergement.\n" +#~ "Donc http[s]://[this field]/matomo.php devrait résoudre votre matomo.php" + +#~ msgid "host.name/matomo" +#~ msgstr "host.name/matomo" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/gl.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/gl.po new file mode 100644 index 0000000..21b8a47 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/gl.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-01 01:34+0000\n" +"PO-Revision-Date: 2017-07-01 01:34+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/he.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/he.po new file mode 100644 index 0000000..591ff38 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/he.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-website-8-0/language/" +"he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "אתר" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr.po new file mode 100644 index 0000000..966ece7 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Web stranice" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr_HR.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr_HR.po new file mode 100644 index 0000000..4a6632a --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hr_HR.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-04 02:47+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Webstranice" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hu.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hu.po new file mode 100644 index 0000000..d46fdbc --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/hu.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Honlap" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/id.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/id.po new file mode 100644 index 0000000..5a57a81 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/id.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 10:45+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Situs Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/it.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/it.po new file mode 100644 index 0000000..06103c2 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/it.po @@ -0,0 +1,150 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 03:45+0000\n" +"PO-Revision-Date: 2024-12-18 12:06+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "Tempo attivo (secondi)" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni configurazione" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "Abilita ID utente" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "Abilita pulsazione" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" +"Quanti secondi una scheda deve essere attiva per essere conteggiata come " +"vista." + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Analitiche Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "Abilita pulsazione Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "Abilita ID utente Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "Ricava ID utente Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "Timer pulsazione Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Host Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "URL host Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "ID Matomo del sito" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" +"Imposta il tempo di attività in secondi. Solo se la pagina è stata " +"visualizzata\n" +" per almeno questo lasso di tempo (e " +"l'utente abbandona la pagina o si sposta dalla scheda), \n" +" verrà inviata una richiesta ping." + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "L'ID che Matomo utilizza per identificare il sito" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "L'host/percorso dell'installazione Matomo è accessibile da Internet." + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "Tracciare le visite con analitiche Matomo" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Sito web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "https://matomo.host.name/" + +#~ msgid "" +#~ "The host/path your Matomo installation is accessible by on the internet. " +#~ "Do not include a protocol here!\n" +#~ "So http[s]://[this field]/matomo.php should resolve to your matomo.php" +#~ msgstr "" +#~ "L'host/percorso da cui la tua installazione Matomo è accessibile da " +#~ "internet. Non includere qui il protocollo!\n" +#~ "Sicché http[s]://[questo campo]/matomo.php dovrebbe puntare al tuo file " +#~ "matomo.php" + +#~ msgid "host.name/matomo" +#~ msgstr "host.name/matomo" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ja.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ja.po new file mode 100644 index 0000000..5f18a53 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ja.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-website-8-0/" +"language/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "ウェブサイト" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ka.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ka.po new file mode 100644 index 0000000..421b6b3 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ka.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Georgian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "ვებსაიტი" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/kab.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/kab.po new file mode 100644 index 0000000..a76788f --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/kab.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Kabyle (http://www.transifex.com/oca/OCA-website-8-0/language/" +"kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Asmel Web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ko.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ko.po new file mode 100644 index 0000000..3667e89 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ko.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-website-8-0/language/" +"ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "웹사이트" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lt.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lt.po new file mode 100644 index 0000000..89f58b5 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lt.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Tinklapis" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lv.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lv.po new file mode 100644 index 0000000..fe3f99c --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/lv.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Tīkla vietne" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mk.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mk.po new file mode 100644 index 0000000..9c5bc4c --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mk.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Вебсајт" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mn.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mn.po new file mode 100644 index 0000000..1a2621d --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/mn.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Вэбсайт" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nb.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nb.po new file mode 100644 index 0000000..b85ab4e --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nb.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +# Jorunn D. Newth , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 03:45+0000\n" +"PO-Revision-Date: 2018-01-16 03:45+0000\n" +"Last-Translator: Jorunn D. Newth , 2018\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Matomo Analytics" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Matomo host" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "Matomo nettsted-ID" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "Identifikatoren Matomo bruker for nettstedet" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Nettsted" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "" +#~ "The host/path your Matomo installation is accessible by on the internet. " +#~ "Do not include a protocol here!\n" +#~ "So http[s]://[this field]/matomo.php should resolve to your matomo.php" +#~ msgstr "" +#~ "Filbane til der Matomo er tilgjengelig via internett. Ikke ta med " +#~ "protokollen her!\n" +#~ "Du trenger bare: http[s]://[dette feltet]/matomo.php " diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl.po new file mode 100644 index 0000000..2bd0d02 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-01 01:34+0000\n" +"PO-Revision-Date: 2017-07-01 01:34+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl_NL.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl_NL.po new file mode 100644 index 0000000..8a46aa0 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/nl_NL.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: Frank Schellenberg , 2018\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +#, fuzzy +msgid "Config Settings" +msgstr "res.config.settings" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Matomo (Matomo) Analytics" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Matomo host" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "Matomo website ID" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "De ID welke Matomo gebruikt om de website te identificeren" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "Volg bezoeken in Matomo Analytics" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "" +#~ "The host/path your Matomo installation is accessible by on the internet. " +#~ "Do not include a protocol here!\n" +#~ "So http[s]://[this field]/matomo.php should resolve to your matomo.php" +#~ msgstr "" +#~ "Het host/pad naar de Matomo installatie welke beschikbaar is op het " +#~ "internet. Voeg het protocol niet toe!\n" +#~ "Dus http[s]://[dit veld]/matomo.php zal de matomo.php ophalen" + +#~ msgid "host.name/matomo" +#~ msgstr "host.naam/matomo" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pl.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pl.po new file mode 100644 index 0000000..3b65f5b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pl.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Strona WWW" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pt_BR.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pt_BR.po new file mode 100644 index 0000000..3ec4dfb --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/pt_BR.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 03:45+0000\n" +"PO-Revision-Date: 2018-08-04 13:34+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.1.1\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "Matomo Analytics" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Host Matomo" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "Matomo site ID" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "O ID que o Matomo usa para identificar o site" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "Acompanhar visitas no Matomo Analytics" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "" +#~ "The host/path your Matomo installation is accessible by on the internet. " +#~ "Do not include a protocol here!\n" +#~ "So http[s]://[this field]/matomo.php should resolve to your matomo.php" +#~ msgstr "" +#~ "O host/caminho de sua instalação Matomo. Não inclua o \n" +#~ "protocolo aqui!\n" +#~ "Ex: http[s]://[este campo]/matomo.php" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ru.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ru.po new file mode 100644 index 0000000..44b568e --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/ru.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 11:34+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Сайт" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sk.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sk.po new file mode 100644 index 0000000..100c267 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sk.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-website-8-0/language/" +"sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Webová stránka" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sl.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sl.po new file mode 100644 index 0000000..a09b524 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sl.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 03:45+0000\n" +"PO-Revision-Date: 2018-01-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "Matomo gostitelj" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "ID Matomo spletne strani" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "Matomo ID za identifikacijo spletne strani" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Spletna stran" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" + +#~ msgid "" +#~ "The host/path your Matomo installation is accessible by on the internet. " +#~ "Do not include a protocol here!\n" +#~ "So http[s]://[this field]/matomo.php should resolve to your matomo.php" +#~ msgstr "" +#~ "Gostitelj/pot Matomo namestitve, ki je dosegljiva preko spleta. Na to " +#~ "mesto ne vstavljajte protokola!\n" +#~ "http[s]://[to polje]/matomo.php bi moralo kazati na vaš matomo.php" + +#~ msgid "host.name/matomo" +#~ msgstr "host.name/matomo" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr.po new file mode 100644 index 0000000..0268a81 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-01 03:03+0000\n" +"PO-Revision-Date: 2017-06-01 03:03+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr@latin.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr@latin.po new file mode 100644 index 0000000..c927fe9 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sr@latin.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-website-8-0/" +"language/sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Internet stranica" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sv.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sv.po new file mode 100644 index 0000000..db16d2e --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/sv.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-website-8-0/" +"language/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Webbplats" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/th.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/th.po new file mode 100644 index 0000000..f8cae86 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/th.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-website-8-0/language/" +"th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "เว็บไซต์" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/tr.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/tr.po new file mode 100644 index 0000000..f73ec1a --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/tr.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-01 01:34+0000\n" +"PO-Revision-Date: 2017-07-01 01:34+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Web Sitesi" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/uk.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/uk.po new file mode 100644 index 0000000..2240159 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/uk.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/vi.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/vi.po new file mode 100644 index 0000000..3e2d654 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/vi.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-website-8-0/" +"language/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "Trang web" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_matomo.pot b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_matomo.pot new file mode 100644 index 0000000..e7ce8cd --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_matomo.pot @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least this\n" +" amount of time (and the user leaves the page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_piwik.pot b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_piwik.pot new file mode 100644 index 0000000..982f29e --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/website_analytics_piwik.pot @@ -0,0 +1,67 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings_has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website_has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings_matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website_matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings_matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website_matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings_matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website_matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings_matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website_matomo_analytics_host +msgid "The host/path your Matomo installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/matomo.php should resolve to your matomo.php" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.ui.view,arch_db:website_analytics_matomo.view_website_config_settings +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.ui.view,arch_db:website_analytics_matomo.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_matomo.view_website_form +msgid "host.name/matomo" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "res.config.settings" +msgstr "" + diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_CN.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_CN.po new file mode 100644 index 0000000..e1c17d1 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_CN.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-website-8-0/" +"language/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "网站" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_TW.po b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_TW.po new file mode 100644 index 0000000..0844883 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/i18n/zh_TW.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_matomo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-" +"website-8-0/language/zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Active Time (seconds)" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable User ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Enable heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "How many seconds a tab needs to be active to be counted as viewed." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__has_matomo_analytics +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__has_matomo_analytics +msgid "Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_heartbeat +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_heartbeat +msgid "Matomo Enable Heartbeat" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_enable_userid +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_enable_userid +msgid "Matomo Enable Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_get_userid +msgid "Matomo Get Userid" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_heartbeat_timer +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_heartbeat_timer +msgid "Matomo Heartbeat Timer" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host +msgid "Matomo host" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_host_url +msgid "Matomo host URL" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,field_description:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,field_description:website_analytics_matomo.field_website__matomo_analytics_id +msgid "Matomo website ID" +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "" +"Set the Active Time in seconds. Only if the page was viewed for at least " +"this\n" +" amount of time (and the user leaves the " +"page or focuses away from the tab)\n" +" then a ping request will be sent." +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_id +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_id +msgid "The ID Matomo uses to identify the website" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model.fields,help:website_analytics_matomo.field_res_config_settings__matomo_analytics_host +#: model:ir.model.fields,help:website_analytics_matomo.field_website__matomo_analytics_host +msgid "" +"The host/path your Matomo installation is accessible by on the internet." +msgstr "" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "Track visits in Matomo Analytics" +msgstr "" + +#. module: website_analytics_matomo +#: model:ir.model,name:website_analytics_matomo.model_website +msgid "Website" +msgstr "網站" + +#. module: website_analytics_matomo +#: model_terms:ir.ui.view,arch_db:website_analytics_matomo.res_config_settings_view_form +msgid "https://matomo.host.name/" +msgstr "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/__init__.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/__init__.py new file mode 100644 index 0000000..45b3979 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/__init__.py @@ -0,0 +1,5 @@ +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import website +from . import res_config_settings diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/res_config_settings.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/res_config_settings.py new file mode 100644 index 0000000..9336b63 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/res_config_settings.py @@ -0,0 +1,30 @@ +# Copyright 2015 Therp BV +# Copyright 2023 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = "res.config.settings" + + has_matomo_analytics = fields.Boolean( + "Matomo Analytics", + related="website_id.has_matomo_analytics", + readonly=False, + ) + matomo_analytics_id = fields.Char( + related="website_id.matomo_analytics_id", readonly=False + ) + matomo_analytics_host = fields.Char( + related="website_id.matomo_analytics_host", readonly=False + ) + matomo_enable_heartbeat = fields.Boolean( + related="website_id.matomo_enable_heartbeat", readonly=False + ) + matomo_heartbeat_timer = fields.Integer( + related="website_id.matomo_heartbeat_timer", readonly=False + ) + matomo_enable_userid = fields.Boolean( + related="website_id.matomo_enable_userid", readonly=False + ) diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/website.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/website.py new file mode 100644 index 0000000..e6a4035 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/models/website.py @@ -0,0 +1,67 @@ +# Copyright 2015 Therp BV +# Copyright 2023 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from urllib.parse import urlparse + +from odoo import api, fields, models + + +class Website(models.Model): + _inherit = "website" + + has_matomo_analytics = fields.Boolean("Matomo Analytics") + matomo_analytics_id = fields.Char( + "Matomo website ID", + help="The ID Matomo uses to identify the website", + default="1", + ) + matomo_analytics_host = fields.Char( + "Matomo host", + help="The host/path your Matomo installation is " + "accessible by on the internet.", + ) + matomo_analytics_host_url = fields.Char( + string="Matomo host URL", + compute="_compute_matomo_analytics_host_url", + store=True, + ) + matomo_enable_heartbeat = fields.Boolean() + matomo_heartbeat_timer = fields.Integer( + help="How many seconds a tab needs to be active to be counted as viewed.", + default=15, + ) + matomo_enable_userid = fields.Boolean() + matomo_get_userid = fields.Char(compute="_compute_matomo_userid") + + @api.depends("matomo_analytics_host") + def _compute_matomo_analytics_host_url(self): + """Formats a proper Matomo host URL based on matomo_analytics_host""" + for website in self.filtered(lambda w: not w.matomo_analytics_host): + website.matomo_analytics_host_url = "" + for website in self.filtered(lambda w: w.matomo_analytics_host): + parsed_url = urlparse(website.matomo_analytics_host) + if parsed_url.scheme not in ("http", "https"): + parsed_url = parsed_url._replace(scheme="https") + host_url = parsed_url.geturl() + host_url = host_url.rstrip("/") # Remove potential trailing slash + website.matomo_analytics_host_url = host_url + + @api.depends_context("uid") + @api.depends("matomo_analytics_host", "matomo_enable_userid") + def _compute_matomo_userid(self): + """Gets the unique user ID of the current user. Here we assume that user ID + is the "login" field of "res.users". + Override this method if you want to use a different user ID. + """ + for website in self.filtered( + lambda w: not w.matomo_analytics_host or not w.matomo_enable_userid + ): + website.matomo_get_userid = "" + for website in self.filtered( + lambda w: w.matomo_analytics_host and w.matomo_enable_userid + ): + if self.env.user != website.user_id: # current user is logged in + website.matomo_get_userid = str(self.env.user.id) + else: + website.matomo_get_userid = "" diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONFIGURE.rst b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONFIGURE.rst new file mode 100644 index 0000000..894516a --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONFIGURE.rst @@ -0,0 +1,51 @@ +To configure this module, you need to: + +* go to Settings/General Settings/Website +* enable `Matomo Analytics` +* fill in `Matomo website ID` and `Matomo host` + +At this point your website is already setup for being tracked in Matomo. + +Some more advanced features offered by Matomo can be configured as follows: + +User ID feature +~~~~~~~~~~~~~~~ + +Matomo includes a User ID feature for enhanced tracking on those websites that offer the ability for visitors to log in. +By tracking the User ID (unique identifier), it is possible to connect visitors between visits across multiple dates +and devices. + +To enable this feature, set `Enable User ID`: Matomo will track the user's `ID` (model `res.users`). +If you want to use a different field, eg: user's `name` or `login`, you need to override method `compute_matomo_userid()`. + +Enable a Heartbeat timer +~~~~~~~~~~~~~~~~~~~~~~~~ + +In order to better measure the time spent in the visit, the active page can send additional +ping requests to Matomo. These requests will not track additional actions or page views. +They just allow Matomo to know whether the user is actively viewing the page (the tab +should be active and in focus). + +To enable this feature, set `Enable heartbeat` and define the Active Time. + +By default, the Active Time is set to 15 seconds, meaning only if the page was viewed +for at least 15 seconds (and the user leaves the page or focuses away from the tab) +then a ping request will be sent. + +Matomo Event Tracking +~~~~~~~~~~~~~~~~~~~~~ + +As explained in this page https://matomo.org/faq/reports/implement-event-tracking-with-matomo/ +on the official documentation of Matomo, there are two main ways to set up event tracking within Matomo: + +1. with the "Matomo Tag Manager" feature: this is the easiest and recommended way; +2. by adding snippets of JavaScript code to your website itself. + +The first method is not supported by this module, however in OCA there's +a dedicated module for that purpose: `website_matomo_tag_manager`. + +The second method can be used along with this module and requires a little more technical confidence. +You will need to integrate a JavaScript snippet directly into your website’s code. + +Technical documentation can be found in: +https://developer.matomo.org/guides/tracking-javascript-guide#manually-trigger-events diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONTRIBUTORS.rst b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..c8cae4b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Holger Brunn +* Andrea Stirpe diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/DESCRIPTION.rst b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/DESCRIPTION.rst new file mode 100644 index 0000000..3b1e76b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +This module allows to simply configure your odoo website for using Matomo_. + +.. _Matomo: http://matomo.org + +If your website is a webshop, also consider to install the OCA module +`website_sale_analytics_matomo` to enable full Ecommerce reporting with Matomo Analytics. diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/icon.png b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmeAS@N?(olHy`uVBq!ia0y~yU}ykg4mJh`hQoG=rx_R+Sc;uILpV4%IBGajIv5xj zI14-?iy0VruY)k7lg8`{1_lPn64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xh zq!<_!7(87ZLn`LHt*tDHIlA-t`n>mR!&YzIGHsf8<B$$Um>gET_{naxk1`20D+ zGK1xw!NbPN2|bO89~+N%pEppq=(kLCGSX2uHprJ_E^{*IKIp)+&2id6vuztyvNuL$ zdA^-?<<(!k&+e;bY|S+1xq)99o0@Rk`trRhp89;eyjLw{_#}Fd?PYlPp~B|v=eA_19fIY=^}d z`Y&%tFz9&nD2bzqq3^N7Y3E5x%2bvfyytoH4a>tliVpGd_uqPi)yOgkI3;YpnXolV zu}g_VQNUGDSy{Q`_+thJ&q)fNm%Ljh{I-=l|6ob#z6OiuoDV+#yjCpp-J;>E$(bCp z!w(A@1ehEJBp7+vm>Cp=Iu%5?97SBcnhpjE?J=>;544!GndL*(UcJdDzeqD|zicr1 zB+Kr*e2YIu-<|%v(v6{Vhej6%TXV!XHp{%V<0*k8n&wuV=P@CM@diu2MB$aErCl1|Wb=;ABZB1k~ z_h&QV=Hey>W@hHnmI>mVimzY(p5dc*Bgd>DX4lfyQy6T{FBf#s-KW4IAt~voG%?}2 zOJGfAO3IUeZEbCtD^>imnJV_iO~0CT*NLN2#v@Eb^n2E$n76T&^VrXSeqiAj%%pL6 z(M63z4-G;E6g@93Q1QH-c5cqkoO^M3O$ND~1>fG>yv?b&U$JF}iYJpIOWNj{Uq6e? zyyrh@i3rn-v(L8ti2Ck5sU^Xn!$s-fqmD&8!UbA>zkc3 ziU$rHaF}~BqejMP^SKO@Lpf%~zhzJ8?7BL^L&eC8!E}XZr-w?DhsvZ!o>NpZPic2v zZennDcJ}v}bmWYc6NiqNx0n6;?MJl_Ph~m5wzO2CU4et6)k)K9kpf4)o6aPU zSLF3*ii(4Q#G1(}FI}BZR4GKRa9b>>Ho0?V>CUiyVM|Y{I+(E#x-H9v*zSvrgWYDY;)+L z0gK}V;lyYYskuU4kESR(7)UJnwx_#orq8lHUp~)#q$k=wg@|In{oEpvuoF`&Aya(%9u-w zvFYG~(+LKD+8*z?eUsUJd0b}i`QV<=&F8<_oqGLAPeEKYKzH7~F#Rs2V7sTu99b{D zCVfe>k=wt2;lhQskGp#XStm1G%qZ!;m|>&4zNY!$gk^WN7ha9pa%gH{(ZPx-wzK4a zs^6~dbYXf}Ah9rj<6}ikcpayr`AnZ>&w`ixLS?`q;$0^Y1a_@mf z-`D7@M|C=DD|DVsySJlicSFw06WZP9jHlfG9aUJY*r4LM;bsm;tJ8U|rVYFd$5v}R zo64{;qDS>uVa%*Z_7~UB86Q0#DtKm!oGQatmNYNz;MYqppMI*`m{quW>Edrbo|6*H zW(UT_ojaz@#?Jno$sscGrsypFbe^h=j6G3~$4&#>dorqjo!*2RH}>j&R| z8x}wFiC7!vG3kg}43o$2X~}DTIjWtwe8pKww|8!s(b|H_sxQ&`|B4&WrZt~_np7-W zU0r?g>eZ=gsmGf4tmo@LaD zn!M^+c;6^|ZJtJ_!~f?_0!|#KPM=QPew$I{?$xzx*Gfo9ow8h;b3&W($;?kbYdBb# zW>^-hb#--JdURp>i7T=hGrO~{U;P!l^~=+#UhL^k3k7CpEUM{ua`5D;Y!wq1U%X^V z%h~D|@7^7oX`CMN{w(_^J;o=J-YP;F+1bvnuB@w8t-9pnC>0+0z^f=FXxf*o^HJv) z-v6?A%><{8GSeA8YCB@|(mGk19ZSl}ltj3m?!EL>LxWM{Po4c_wxdUnW{S>VJHdGC zjG8Cr)0@tg$653>AAXqNHBW)#L)G3FZ{Mb#pR9b}WyS_sCzn7McX#$Ve(GswW=yl9))tt96$K7#7I?tqQ`>OtGSz-n^)=DOg?8EC*s3-h3Rg`!tL9| z4<-m~-MZCarVnf4cDW0RFP(%O{2XSVZJRVn$ZglZe{~gm~^x#st$phB>A=9iiSO6EXp3PI@wy_#!?q(vZ^qd)0Vjb@mkW3A_D-BQam%S|K`u`d zv%2GsH#LiBqm@+k$s*3kLWXafa;HYui`TE6 z{r&sj*@&ECVo-Br%82bhnq*P?%S1~{D%|2UTHTTSZ0j|~y zH*a=U*sNQ*J7Zx$+RG(nj9C&A5(h3^5Xj2Py7Ayl#b@J-TnfhvHMF#n_zVI?9)7J7 zZ_-w*eGP) z3RLx9tMoLWtTt-KH6exRO>%N_$4;E!Shad}@ST%CUF=jC-a5_kQ;$xV<)QN6Yn7pq z(V<5x9M>*Q-}FCoj^=8XXTftWO@H_DrDI^A;GMkfuVk8QY|?FhZoBjvk$H8{E>N^^@;Gp0FH?sEUBrf8k(9Xqjx=CS+n>esJ&%&-cYRj;OnnSLY*t@ z*iYP@c3sJ7pH!41M}Wp;*GVcr{?@fPDekzNcUALgvg^9aG7FgvH*?NxS-dt*S9hz| zmF!z-MV!x>gLiRXa59l{4G$Oh^7j6$#9K6xNo_Lc(W6J#XiG^-HlBZ;{I8m8tyhpV z=he?Sy7y0180PL`FlAwCoU`;`gs-DjmizN3f#usSO`h&~B)x0;$vfIdBp8lvdByZ( z0jpsD@r!rw@-Dy3IsNof%{t>=tF+VWuV%I0%}by4{lNo;KXvxElgy&!u6|mgdh6<= z)pyNR*D~l9PUCk<`8Rc5rJo&D3tgEOU+h@4Na@+h$CYw+^Z6eZSR}`7`8023 z($ni(OBkPStx34$!C`FMEY~_FTTjpe)!-$MXBCJ>(~2-o(#6L z4)>2!>$R7jxNME6LEwpHiNTXECT&cSjaf8r&!R<(L{#+!I1(~4JU&-uoeynG-DN&| zsY3m9pL>TsCV2I+rZ_DV56{-z7{OCpTdSd`=O_5GC}M5cvy;q|q|Lv4|DL{PLCmk> zwSP1(Ul#ftrE-FuYY|J@sRX^5*Ntu#^=f+xwY9ek_PPbe#LU^GX>#>L;}SkY1A~SP z6RTx^Rz3AxUvGbV#eAc@eYQ%=@cZwZ8KoF< zKB!6XELy%?ed(v;v-EeyE&LX(&HL2!SG3%^J>`2eGQ*;2T?H9B-P`ZT<1nDK4Dd+|<V8ya+Ae>& zc#)%f88(!>yrf;Sw}Fi-o7Lk0&wl3fIdwd2%O!X3yV;z3dt0MGQ}+73V%*|-XKpY4 za^p@_)UAjK-Rl z9%!O5PluQzSVfB)i*i?=s7i(|vdj3b|(p1xVM%W1-b1ijsj`sWlBRr{lg zD^G3wG(9}|9e?FxO-k6KF+(V#G*kB0Ju9Zk2RWLJzpC(^=NCIw=Wbh;#%&5lgX(40^uYHXSwpdfHypTB+U$&^D~PftHA z+wJIaslI5%PD{(%83_%%rO&HP4Au)dy!-G_Monb)TMl(4k1y^)66XtLPD$Bn#04}O zw?_$D+s+9VU*K*d-Rm}G%9IV6(VZ?#O$r;9Mn=61+-`99rixg%q72{WwTVS1owt3L zkdr&Me10w4}9`wIcoZ)cW1*E6cydfF|(NKC&9zkv8W?LhpqYG1hs$06OTVE*uW*g!uYUY#@ZJr z-8?FHe2SKPe)+tev(m%^uHvy%HhEk9oin{)aQoEyEzi+<9L?fx`Yd^dU(y?NZ=|8U6r4;<>im~PTom=eeOYyZbZ`Q_YiriU$Fxw3O++Tp{8GjelXBO@il*2bLF z3S0Z&shr0yWA)sRS!-o3q~E{1^8UpPk&O{Ob9vG>MwpzJn6&)o*N=~1ym@h;z<`5c z#rpNfA93p)_$aK-;CYC(TWn+Xlb~_%Do@PJ#jpLJvO6$r{ztN z8<#nq8U-0xI0GHlpFdvqX3_4>&o=%4{?*m|J1V}4*;K5XRaI3rr=PLPL-_7Oli=$U zecw;;X5M{wo)Yh(iy60C0#c94SX2nO_sgYD_1`_+!=!6-`uR<=P8v_v?q9sPxpj4< z-p@lVJ{&9mw{PY6d-=CT@dD9>4gycTR|RffD7Sb0e1{4JjtMD>eEj^(3_LRJrPE{C zrk`$2Fz5(gyY@v!{_)0U_Koj0osMw4m17oWQSv$U=d~?ae>YyMH`RDN!$-|xu3wpy zgso4MCa=;&j(^+o<^R;#uL;u@(}`g45OUyoi z98Ay7&OW~GVvX-f&xImct-BvRTwVAk-p=ts3xE3lm(JJM33q%vY3HZZFwyvcRa8f5 z@iT+X$6uBtJ^l2wKt%N6jg83`1s@dF?fT?(Z9R8WgNqVl^T7#08Z$i>Ea$%P>AkR1 zKu8G7=9_1}G-jA|xhOI2zRMRV@ZsO@_sJ?Ehk7K93tp;DU$R8gQ>f*lUS2{1sAo}{ z`}gnP47(bMg#jGXW2-cs77Ao#X9w?U*R&O5$k=X@q!6*|X;I0ZN|Cp__q+A!&XXRCcrrm|)vvB${*gtao7f=b$h9YPmjU$fT`iJ^K0dftfrr%=6{;{duKb zGS{+ssrU4{*(WbPj#;c0VYw669(X;9$9M`Ev8CRa$FecZY4gWYOoGnySjf#%!!_ZDoCPYq$O` zj;mL%W>$tvr<`KvTE?7mI^pYg@g=Q=GVPl-8O^b+7Gtin*Seb*p(B>o?>(vIwEq4% zU%$q!pWf*+`)=RP;%5mbA03_bZAX;cSFt4;T@_Czx(o2NU%Ygwsa?KKBK!Kf)a%|} zULQWH&u@5ap%b-5!_|C&%7SOfnVFi`)<(DY+y9fWIe$27>!G)0$zNB6&ic9J#C8#l z6_OtRpErqWhdtQ){odh|lhqBEuj||TDME*hK{NZ)x4JKaw_~-%x*rB8G&r~OJ?#4W zIxswZ`ON)3|F?d4)UE&Mtoi*T-TyzapAov-!GGl9*5@i|u~!*5h4$Fmg38M^k((bB zSX?S$X87@BvVXv%qQuB#Wv#n;e?Cl$p5UR9U?O!{tvTZ?!>miO3`Z-D1V?6Sis?l( z1ncVl_|vVwq3WvEhnk|0z;#dNS{AqU-jd{DtFV#d;p0=1;CXa-Z?$3hyO@}Ld9l}Q zQctbc=(@2zUmn!3ICsu3C-##u&%PqAW((6Q;|KpY$e#ZH(rVl0bWcxCFE1|vzV_gf z=EL!IopJN|Mf1u}89#}B!uTq9zfmdc@6S|>{r~s<=Gj-sr?6UZcab^_~V24|8MVq`1bDZj-ShB2gJqA`xax$-nS_L)K=T`DL&pIDO{h& za6!>Yo-_Xs8VM|Cy|=%n_uSw64ihF>_et}xeX!}@oPOSDW1i8>3necEs;a6IOr$m@ z9p!2{oH*m`Gm-BmwcDarU;i~<-{;jK0jEie^RM(QKE9ICGbm&{o(okKdip(d=F>wN?-bw)R8-W5 zo5A%*Z$>a|zHYMMqr6_~_1Nz*O#eIOc;?GC-PwEd?bk>D_kLtsVP{Z86JrO2YaQhb9)`^h2O#+EN###s?n^D(1Bxe|(UC-Try9zm??IFHr8ec`E32 zy`90sZ026KECVQA&#-?bmAhj7adBVYjI69fy8>JN z;~Y*)NngBkr{{1xzxv&cU0bGpeA>aT^yAb28m{k)qD=lh7S+72;>l#uv@d^;fdtQt zotc6iiZ`dtnmwD5A$020jEoG2)Kt~o{dq=${l{`_UzbyQSz;XzjM1GcLYPjg>*S#s$8_ruRWFI=@s>+P;v z#wwnN7CyIQVbJ;c@YR+sMuz{-V+C9Uw`xCcGFI!1-d~{jN?gy!@cEPbUv6$;ys-Gm zN|D9Jldq=PhYCFocCHvj#--njYty&g*! z|7Q77V|R7S6$RIdFS6c#Nt&5!{7wrivbg{M&REcL_|NQV8-H80a!0?OeN0zNE2&s; zrAdd2l4R-Rn#Bu*oqF7q-;`NPzgcj2h0XcZe0MbJwJ!%Nciet^?AF$7!T#eP&so1; zuzY!YY`=?=#oddHo|7g>d{s?(_5J1Y;_rnXlUPLFHZ~iQHU^mPglHh9-?gUyrJV#2Sj%#+NMk9wGj#uk^6# zawhTr&tG3I;oSQ!dTrg@bFMuuN^gEdS}k20uzTH;xeP_cy;_w~!JDs4=#;qmZvD!Y z2j6bL+xF~Pnv883j}SxS^P4s{wq46qJPjt~@9lHH_fIB%Z>>N|NpJAiNi%o+xY)~Z zGH1KCDg*E7Yeg$fJXC~o%7jh(pL$)aW>xm5`@qN}&BW|+jcBy@FH z;?-553M~o$|NZ^(Y4!S&`~DmU??_8O{Jn_#-ZVc4r%j(Y3l5%L9k9Q$G^}v_)Ou4* zhr?4Z9Z4}dm|(EsBg-q5#fMLL$tJEjp$(ea*|mFjU{utpX$gTn?pI!~wb=Uq^Ru&u zFD4&1ab2PHP{%Fi&l5Kuleq^U%w&|XV19OQlTL0C+g^L|@40$^%@sY!^oOnVGzt!KWSS@-}L8$qPFjIod70ylQ2U%f4{7t;{ERe%IKQl$WQ^xxFs!TB>pW zm38SxZ=WQdxuYR$x{ay9{zu(uZKHkFm zS&NZF@s9QTJ)7^oEV1)A+~cOKrKNR4<$R9RUbkJzT$j6)r!!`4fiYlX>gj2(&GYX3m~r^w z3~MRA-FN#|ty(puS9{qE-G78GXK-_x^Y@0Uy7*7NHB{hZ6N zYhrttzWY5+1_Pl2hE;Wc9?QoU-Ok-^`>JT?v`f=B-OO3BZk^xl1(|C^SDE)D6%+_K zZ2EAwOEbzO=I7j%la4E~KDo}~=wKk>llj%=e0x+>RN3Db?)Ja(8Tyz!6#Uo5^)(4J zsLor%s@=fqZ~OHM|Mj)e-y3e`q%F6fI(_I~pAxoamFao>%+#>-BO*i*BY68&^k8h9zFjS67GY*MGU_{@*(_ z_36+7x8>vq3mTzxglvWi!4I``G9S7%w5_HMm& z_0cI+2UpkDRqFov`{!z|6Ju;TsL-^S+f8%V?%m&Q{(Lz6fA7wnKb;v4Yb30mo_vUd z!9YlWAyqqk-JTx@+2#NIoMTy>x8(ZSG~=wSEF-H4Dw^B({=IT3z>8t$aX)>=DG#eS z1Y~1Hb?p80ggU>xy|c6U_+@|lzg7)qJ`Ss=Cp&Q-kegLgt=w=ldVAj9XRlVT|5u%5 z#ME&5Y18q?o;OXCdCp(>{_V)Jw@Z#dn?k5&! zPUlu@WpL;+(O}*1<>~bJeXIBFt25r4XCn3RV?{tz)T-GmRi$jIj8_(1-F0Z{j> z9~RvD=>&>`?Dc!U9S^*`j=RC4>U~T2u_b~HsSlzvH#}Ik``xZb)1vc!R!={DG^{P? zuEOP$@;kM1(*(UYsz?{+*EWr%0!NEC|ND>K=TpI(@BY`A&c@fy zymjl=Rn|4noj5AR9kypIFNKgL4(&He%5F*C)k{C|MuqQ z=H%Dc)><>xbTV0%9P83_Wl(UH5@GytZ?eB#<(}0yUl#_f zc)ND{yWB7Fa^tKZG??(8_4v~j~zv#C?3 zeyFgKWS>6eVG-v7H-*%hE5813QrNIK`Kd+SpC7BY->Z79%`l7Mhaqe9UYX!o3?fEK zXCikNJv{{~$kdCUo!QwKXFmJv4AX3}IeyF68M5s9xkSaYz(PiH{@Spg&d$ytcilW$ zTu|@oXWOeV zzDn^0ZVZ((TbvYs)a;wG@mGe)t?k*@*U8@Ap8sFE;V^^K47as$eVLvhgVGoxe*O7; z{{EhdkB`oloNGLo02-FMUDlgaQ86QQ)2#N1v&yzyJw2~|+qP}7{`P;rtUi18?0lvd zjzw+fwq$)R^2ugm&{Q#CjM$ucd0A!o-O}rGKUuQ#wKE&1pK}QeEYjn;J1K0^k}bUR z8=ojn+PinJX1Bi6!hqZJ|9x40f8U2g-13j3FXu&VtFl~X%czm!vVwKPmy_!A_k1~} zy?)R643kZg9;T+IE7q>{Rct6?Tz&qzx8zn~7R8b$Cnkc!_CNOnhDl!crd)sb_0b$f zh6!rCVfxYAa*hf6+Y~Op)0na`A|NK_%rS-+o8CAmfEHkwTzyx**j9JL<~ zvRlhlKAG5Gz_+c+@|-6VLuOrb_cYz;u)hbG`R{1VFJACW<5Sh%YEX^W{_NQ^X9mCI zkdw^k_MT!tmk0{12MkvjGXC5=U$^bSwdnl4;qM%nCM~-goxgW$^6zhN=QCPxC^QxC zc%*qQlPN&s58Ga* Q3=9kmp00i_>zopr09!l7U;qFB literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/index.html b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/index.html new file mode 100644 index 0000000..1fc70fb --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/static/description/index.html @@ -0,0 +1,478 @@ + + + + + +Matomo analytics + + + +
+

Matomo analytics

+ + +

Beta License: AGPL-3 OCA/website Translate me on Weblate Try me on Runboat

+

This module allows to simply configure your odoo website for using Matomo.

+

If your website is a webshop, also consider to install the OCA module +website_sale_analytics_matomo to enable full Ecommerce reporting with Matomo Analytics.

+

Table of contents

+ +
+

Configuration

+

To configure this module, you need to:

+
    +
  • go to Settings/General Settings/Website
  • +
  • enable Matomo Analytics
  • +
  • fill in Matomo website ID and Matomo host
  • +
+

At this point your website is already setup for being tracked in Matomo.

+

Some more advanced features offered by Matomo can be configured as follows:

+
+

User ID feature

+

Matomo includes a User ID feature for enhanced tracking on those websites that offer the ability for visitors to log in. +By tracking the User ID (unique identifier), it is possible to connect visitors between visits across multiple dates +and devices.

+

To enable this feature, set Enable User ID: Matomo will track the user’s ID (model res.users). +If you want to use a different field, eg: user’s name or login, you need to override method compute_matomo_userid().

+
+
+

Enable a Heartbeat timer

+

In order to better measure the time spent in the visit, the active page can send additional +ping requests to Matomo. These requests will not track additional actions or page views. +They just allow Matomo to know whether the user is actively viewing the page (the tab +should be active and in focus).

+

To enable this feature, set Enable heartbeat and define the Active Time.

+

By default, the Active Time is set to 15 seconds, meaning only if the page was viewed +for at least 15 seconds (and the user leaves the page or focuses away from the tab) +then a ping request will be sent.

+
+
+

Matomo Event Tracking

+

As explained in this page https://matomo.org/faq/reports/implement-event-tracking-with-matomo/ +on the official documentation of Matomo, there are two main ways to set up event tracking within Matomo:

+
    +
  1. with the “Matomo Tag Manager” feature: this is the easiest and recommended way;
  2. +
  3. by adding snippets of JavaScript code to your website itself.
  4. +
+

The first method is not supported by this module, however in OCA there’s +a dedicated module for that purpose: website_matomo_tag_manager.

+

The second method can be used along with this module and requires a little more technical confidence. +You will need to integrate a JavaScript snippet directly into your website’s code.

+

Technical documentation can be found in: +https://developer.matomo.org/guides/tracking-javascript-guide#manually-trigger-events

+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Onestein
  • +
  • Therp BV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/website project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/__init__.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/__init__.py new file mode 100644 index 0000000..6e8fb78 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/__init__.py @@ -0,0 +1 @@ +from . import test_analytics_matomo diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/test_analytics_matomo.py b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/test_analytics_matomo.py new file mode 100644 index 0000000..1c8148f --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/tests/test_analytics_matomo.py @@ -0,0 +1,110 @@ +# Copyright 2023 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from lxml import html + +from odoo.tests import common, tagged + + +@tagged("-at_install", "post_install") +class TestWebsiteAnalyticsMatomo(common.HttpCase): + def setUp(self): + super().setUp() + self.website = self.env.ref("website.default_website") + self.base_view = self.env["ir.ui.view"].create( + { + "name": "Base", + "type": "qweb", + "arch": """ + + I am a generic page + + """, + "key": "test.base_view", + } + ) + self.page = self.env["website.page"].create( + { + "view_id": self.base_view.id, + "url": "/page_1", + "is_published": True, + "website_id": self.website.id, + } + ) + + def test_01_defaults(self): + """Check default values""" + self.assertFalse(self.website.has_matomo_analytics) + self.assertEqual(self.website.matomo_analytics_id, "1") + self.assertFalse(self.website.matomo_analytics_host) + self.assertFalse(self.website.matomo_analytics_host_url) + self.assertFalse(self.website.matomo_enable_heartbeat) + self.assertEqual(self.website.matomo_heartbeat_timer, 15) + self.assertFalse(self.website.matomo_enable_userid) + self.assertFalse(self.website.matomo_get_userid) + + def test_02_compute_matomo_analytics_host_url(self): + """Computation of field matomo_analytics_host_url""" + self.website.has_matomo_analytics = True + self.assertEqual(self.website.matomo_analytics_host_url, "") + + self.website.matomo_analytics_host = "matomo.example.host" + self.assertIn("https://", self.website.matomo_analytics_host_url) + self.assertIn("matomo.example.host", self.website.matomo_analytics_host_url) + + self.website.matomo_analytics_host = "http://matomo.example.host" + self.assertIn("http://", self.website.matomo_analytics_host_url) + self.assertIn("matomo.example.host", self.website.matomo_analytics_host_url) + + self.website.matomo_analytics_host = "" + self.assertEqual(self.website.matomo_analytics_host_url, "") + + def test_03_compute_matomo_userid(self): + """Computation of field matomo_get_userid""" + self.website.has_matomo_analytics = True + self.website.matomo_analytics_host = "matomo.example.host" + self.assertEqual(self.website.matomo_get_userid, "") + + self.website.matomo_enable_userid = True + self.assertTrue(self.website.matomo_get_userid) + self.assertEqual(self.website.matomo_get_userid, str(self.env.user.id)) + self.assertNotEqual(self.website.matomo_get_userid, self.website.user_id.login) + + self.website.matomo_analytics_host = "" + self.assertEqual(self.website.matomo_get_userid, "") + + def test_04_tracker_script_in_page(self): + """Check matomo tracker script in the page""" + + # matomo tracker script not in the page + self.authenticate("admin", "admin") + r = self.url_open(self.page.url) + self.assertEqual(r.status_code, 200) + root_html = html.fromstring(r.content) + tracking_script = root_html.xpath('//script[@id="matomo_analytics"]') + self.assertFalse(tracking_script) + + # enable analytics tracker + self.website.has_matomo_analytics = True + self.website.matomo_analytics_host = "matomo.example.host" + + # matomo tracker script present in the page + self.authenticate("admin", "admin") + r = self.url_open(self.page.url) + self.assertEqual(r.status_code, 200) + root_html = html.fromstring(r.content) + tracking_script = root_html.xpath('//script[@id="matomo_analytics"]')[0] + self.assertIn("trackPageView", tracking_script.text) + self.assertIn("enableLinkTracking", tracking_script.text) + self.assertIn("setSiteId", tracking_script.text) + self.assertNotIn("setUserId", tracking_script.text) + + # enable User ID feature + self.website.matomo_enable_userid = True + + # Tracking User ID enabled in the page + r = self.url_open(self.page.url) + self.assertEqual(r.status_code, 200) + root_html = html.fromstring(r.content) + tracking_script = root_html.xpath('//script[@id="matomo_analytics"]')[0] + self.assertIn("setUserId", tracking_script.text) diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/res_config_settings.xml b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/res_config_settings.xml new file mode 100644 index 0000000..2042071 --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/res_config_settings.xml @@ -0,0 +1,91 @@ + + + + res.config.settings + + +
+
+
+ +
+
+
+
+
+
+
+
diff --git a/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/templates.xml b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/templates.xml new file mode 100644 index 0000000..fc20a3b --- /dev/null +++ b/odoo-bringout-oca-website-website_analytics_matomo/website_analytics_matomo/views/templates.xml @@ -0,0 +1,42 @@ + + + + + + diff --git a/odoo-bringout-oca-website-website_cookiebot/README.md b/odoo-bringout-oca-website-website_cookiebot/README.md new file mode 100644 index 0000000..bf5559e --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/README.md @@ -0,0 +1,46 @@ +# Website Cookiebot + +Odoo addon: website_cookiebot + +## Installation + +```bash +pip install odoo-bringout-oca-website-website_cookiebot +``` + +## Dependencies + +This addon depends on: +- website + +## Manifest Information + +- **Name**: Website Cookiebot +- **Version**: 16.0.2.0.0 +- **Category**: Website +- **License**: AGPL-3 +- **Installable**: False + +## Source + +Based on [OCA/website](https://github.com/OCA/website) branch 16.0, addon `website_cookiebot`. + +## License + +This package maintains the original AGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Reports: doc/REPORTS.md +- Security: doc/SECURITY.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/ARCHITECTURE.md b/odoo-bringout-oca-website-website_cookiebot/doc/ARCHITECTURE.md new file mode 100644 index 0000000..5b62966 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Website_cookiebot Module - website_cookiebot + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/CONFIGURATION.md b/odoo-bringout-oca-website-website_cookiebot/doc/CONFIGURATION.md new file mode 100644 index 0000000..5090729 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for website_cookiebot. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/CONTROLLERS.md b/odoo-bringout-oca-website-website_cookiebot/doc/CONTROLLERS.md new file mode 100644 index 0000000..f628e77 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/CONTROLLERS.md @@ -0,0 +1,3 @@ +# Controllers + +This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/DEPENDENCIES.md b/odoo-bringout-oca-website-website_cookiebot/doc/DEPENDENCIES.md new file mode 100644 index 0000000..c1545b8 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/DEPENDENCIES.md @@ -0,0 +1,5 @@ +# Dependencies + +This addon depends on: + +- [website](../../odoo-bringout-oca-ocb-website) diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/FAQ.md b/odoo-bringout-oca-website-website_cookiebot/doc/FAQ.md new file mode 100644 index 0000000..a66c0ed --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon website_cookiebot or install in UI. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/INSTALL.md b/odoo-bringout-oca-website-website_cookiebot/doc/INSTALL.md new file mode 100644 index 0000000..4dfc789 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-website-website_cookiebot" +# or +uv pip install odoo-bringout-oca-website-website_cookiebot" +``` diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/MODELS.md b/odoo-bringout-oca-website-website_cookiebot/doc/MODELS.md new file mode 100644 index 0000000..f6b49d2 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/MODELS.md @@ -0,0 +1,12 @@ +# Models + +Detected core models and extensions in website_cookiebot. + +```mermaid +classDiagram + class website +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/OVERVIEW.md b/odoo-bringout-oca-website-website_cookiebot/doc/OVERVIEW.md new file mode 100644 index 0000000..0c68421 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: website_cookiebot. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon website_cookiebot +- License: LGPL-3 diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/REPORTS.md b/odoo-bringout-oca-website-website_cookiebot/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/SECURITY.md b/odoo-bringout-oca-website-website_cookiebot/doc/SECURITY.md new file mode 100644 index 0000000..e07da9d --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/SECURITY.md @@ -0,0 +1,8 @@ +# Security + +This module does not define custom security rules or access controls beyond Odoo defaults. + +Default Odoo security applies: +- Base user access through standard groups +- Model access inherited from dependencies +- No custom row-level security rules diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-website-website_cookiebot/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/USAGE.md b/odoo-bringout-oca-website-website_cookiebot/doc/USAGE.md new file mode 100644 index 0000000..9338ffc --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_cookiebot +``` diff --git a/odoo-bringout-oca-website-website_cookiebot/doc/WIZARDS.md b/odoo-bringout-oca-website-website_cookiebot/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-website-website_cookiebot/pyproject.toml b/odoo-bringout-oca-website-website_cookiebot/pyproject.toml new file mode 100644 index 0000000..992d617 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/pyproject.toml @@ -0,0 +1,42 @@ +[project] +name = "odoo-bringout-oca-website-website_cookiebot" +version = "16.0.0" +description = "Website Cookiebot - Ask for cookies consent connecting with Cookiebot" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-website>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/0" +repository = "https://github.com/bringout/0" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["website_cookiebot"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-website-website_cookiebot/website_cookiebot/README.rst b/odoo-bringout-oca-website-website_cookiebot/website_cookiebot/README.rst new file mode 100644 index 0000000..3262796 --- /dev/null +++ b/odoo-bringout-oca-website-website_cookiebot/website_cookiebot/README.rst @@ -0,0 +1,114 @@ +================= +Website Cookiebot +================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:ac3198e9e153575161d66cb4028f1f14c2a162e32c2fa2d39fbf9f719fd52e08 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/16.0/website_cookiebot + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-16-0/website-16-0-website_cookiebot + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module integrates Odoo website with `Cookiebot `__, +to ask for consent before installing cookies on users' browsers. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To configure this module, you need to: + +#. Go to *Website > Configuration > Settings* +#. Under *Select the Website to Configure*, choose a website. +#. In the privacy section enable *Cookiebot* option. +#. Click on *`How to configure Cookiebot `__*. +#. Follow the instructions, except step 3 (do not insert the `` + + + + + diff --git a/odoo-bringout-oca-website-website_legal_page/README.md b/odoo-bringout-oca-website-website_legal_page/README.md new file mode 100644 index 0000000..06baec8 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/README.md @@ -0,0 +1,46 @@ +# Website Legal Page + +Odoo addon: website_legal_page + +## Installation + +```bash +pip install odoo-bringout-oca-website-website_legal_page +``` + +## Dependencies + +This addon depends on: +- website + +## Manifest Information + +- **Name**: Website Legal Page +- **Version**: 16.0.1.1.0 +- **Category**: Website +- **License**: AGPL-3 +- **Installable**: False + +## Source + +Based on [OCA/website](https://github.com/OCA/website) branch 16.0, addon `website_legal_page`. + +## License + +This package maintains the original AGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Reports: doc/REPORTS.md +- Security: doc/SECURITY.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-website-website_legal_page/doc/ARCHITECTURE.md b/odoo-bringout-oca-website-website_legal_page/doc/ARCHITECTURE.md new file mode 100644 index 0000000..1ae3a0e --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Website_legal_page Module - website_legal_page + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/CONFIGURATION.md b/odoo-bringout-oca-website-website_legal_page/doc/CONFIGURATION.md new file mode 100644 index 0000000..f318cd2 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for website_legal_page. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/CONTROLLERS.md b/odoo-bringout-oca-website-website_legal_page/doc/CONTROLLERS.md new file mode 100644 index 0000000..f628e77 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/CONTROLLERS.md @@ -0,0 +1,3 @@ +# Controllers + +This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/DEPENDENCIES.md b/odoo-bringout-oca-website-website_legal_page/doc/DEPENDENCIES.md new file mode 100644 index 0000000..c1545b8 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/DEPENDENCIES.md @@ -0,0 +1,5 @@ +# Dependencies + +This addon depends on: + +- [website](../../odoo-bringout-oca-ocb-website) diff --git a/odoo-bringout-oca-website-website_legal_page/doc/FAQ.md b/odoo-bringout-oca-website-website_legal_page/doc/FAQ.md new file mode 100644 index 0000000..9c21bfb --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon website_legal_page or install in UI. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/INSTALL.md b/odoo-bringout-oca-website-website_legal_page/doc/INSTALL.md new file mode 100644 index 0000000..bc32635 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-website-website_legal_page" +# or +uv pip install odoo-bringout-oca-website-website_legal_page" +``` diff --git a/odoo-bringout-oca-website-website_legal_page/doc/MODELS.md b/odoo-bringout-oca-website-website_legal_page/doc/MODELS.md new file mode 100644 index 0000000..6bb47c2 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/MODELS.md @@ -0,0 +1,11 @@ +# Models + +Detected core models and extensions in website_legal_page. + +```mermaid +classDiagram +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/OVERVIEW.md b/odoo-bringout-oca-website-website_legal_page/doc/OVERVIEW.md new file mode 100644 index 0000000..6c69bb5 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: website_legal_page. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon website_legal_page +- License: LGPL-3 diff --git a/odoo-bringout-oca-website-website_legal_page/doc/REPORTS.md b/odoo-bringout-oca-website-website_legal_page/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/SECURITY.md b/odoo-bringout-oca-website-website_legal_page/doc/SECURITY.md new file mode 100644 index 0000000..e07da9d --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/SECURITY.md @@ -0,0 +1,8 @@ +# Security + +This module does not define custom security rules or access controls beyond Odoo defaults. + +Default Odoo security applies: +- Base user access through standard groups +- Model access inherited from dependencies +- No custom row-level security rules diff --git a/odoo-bringout-oca-website-website_legal_page/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-website-website_legal_page/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-website-website_legal_page/doc/USAGE.md b/odoo-bringout-oca-website-website_legal_page/doc/USAGE.md new file mode 100644 index 0000000..ba4ed24 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_legal_page +``` diff --git a/odoo-bringout-oca-website-website_legal_page/doc/WIZARDS.md b/odoo-bringout-oca-website-website_legal_page/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-website-website_legal_page/pyproject.toml b/odoo-bringout-oca-website-website_legal_page/pyproject.toml new file mode 100644 index 0000000..19232dd --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/pyproject.toml @@ -0,0 +1,42 @@ +[project] +name = "odoo-bringout-oca-website-website_legal_page" +version = "16.0.0" +description = "Website Legal Page - Odoo addon" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-website>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/0" +repository = "https://github.com/bringout/0" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["website_legal_page"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/README.rst b/odoo-bringout-oca-website-website_legal_page/website_legal_page/README.rst new file mode 100644 index 0000000..090bb3a --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/README.rst @@ -0,0 +1,148 @@ +================== +Website Legal Page +================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:d81eb49f894c1c6904bd40054d40a1d2fab625781ab1bbca123a6297e0b4b032 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/16.0/website_legal_page + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-16-0/website-16-0-website_legal_page + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module was written to provide common legal page needed in any website. +This legal page must be edited using the website builder. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Website editor can change easily any text of these pages using website builder. + +This legal page is complementary to the account terms. + +If you install this module with account installed too, the added page will take on a +complementary function to /terms of account, but never replace the function of the page. + + +Disclaimer +~~~~~~~~~~ + +These legal pages are templates. + +**You must edit the templates and adapt them to your particular case** + +The provided agreements are for **informational purposes only** and do not +constitute legal advice. + +Authors, contributors and maintainer are not law firms and are not providing legal advice. +All information (including agreements, forms and documents) available in this +addon are **provided without any warranty**, express or implied, including as to +their legal effect and completeness. The information **should be used as a +guide** and modified to meet your own individual needs and the laws of your +state. Your use of any information or forms is at your own risk. + +Authors, contributors, maintainer and any of its employees, contractors, or +attorneys who participated in development of this addon **expressly disclaim any +warranty**: they are not creating or entering into any Attorney-Client +relationship by providing information to you. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Tecnativa +* LasLabs +* Nicolas JEUDY + +Contributors +~~~~~~~~~~~~ + +* Antonio Espinosa +* Igor Pastor +* Dave Lasley +* Nicola Malcontenti +* Nicolas JEUDY +* Lorenzo Battistini +* Eduardo Magdalena (C2i Change 2 improve http://www.c2i.es) + +* `Tecnativa `_: + + * Rafael Blasco + * Jairo Llopis + * Alexandre Diaz + * Carlos Roca + +* `Studio73 `_: + + * Miguel Gandia + +Other credits +~~~~~~~~~~~~~ + +Templates +~~~~~~~~~ + +Templates are based on legal templates publicy provided by `termsfeed.com `_: + +* `Privacy policy `_ +* `Terms of use `_ + +Icon +~~~~ + +Icon based on ``johnny-automatic-scales-of-justice.svg`` from +`Openclipart `_ + +Thanks to `johnny_automatic `_ + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/website `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/__init__.py b/odoo-bringout-oca-website-website_legal_page/website_legal_page/__init__.py new file mode 100644 index 0000000..6d4f4bd --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/__init__.py @@ -0,0 +1 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/__manifest__.py b/odoo-bringout-oca-website-website_legal_page/website_legal_page/__manifest__.py new file mode 100644 index 0000000..c833328 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/__manifest__.py @@ -0,0 +1,19 @@ +# Copyright 2015 Antonio Espinosa +# Copyright 2017 Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Website Legal Page", + "category": "Website", + "version": "16.0.1.1.0", + "depends": ["website"], + "data": [ + "views/website_legal_main_page.xml", + ], + "author": "Tecnativa, " + "LasLabs, " + "Nicolas JEUDY, " + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/website", + "license": "AGPL-3", +} diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bg.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bg.po new file mode 100644 index 0000000..bec1636 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bg.po @@ -0,0 +1,261 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 03:55+0000\n" +"PO-Revision-Date: 2016-05-26 15:27+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-website-9-0/" +"language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#, fuzzy +#~ msgid "Privacy Policy" +#~ msgstr "политика за личните данни" + +#~ msgid "privacy policy" +#~ msgstr "политика за личните данни" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bs.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bs.po new file mode 100644 index 0000000..d47edb2 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/bs.po @@ -0,0 +1,233 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Sadržaj" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Delegiranje" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "Nadležno pravo i jurisdikcija" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean any audio, video text, images or other material you choose to display on this Website. By displaying Your Content, you grant **COMPANY NAME** a non-exclusive, worldwide irrevocable, sub licensable license to use, reproduce, adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and must not be invading any third-party's rights. **COMPANY NAME** reserves the right to remove any of Your Content from this Website at any time without notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "Obeštećenje" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "Prava intelektualne svojine" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "Uvod" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "Pravna stranica" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "Ograničenje odgovornosti" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "Nema garancija" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or its licensors own all the intellectual property rights and materials contained in this Website.
\n" +" You are granted limited license only for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "Ograničenja" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "Razdvojivost" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use" +" case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your" +" rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE URL**.
\n" +" These Terms will be applied fully and affect to your use of this Website. By using this Website, you agreed to accept all terms and conditions written in here. You must not use this Website if you disagree with any of these Website Standard Terms and Conditions.
\n" +" Minors or people below 18 years old are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "Varijacija uslova" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "Vi ste specifično ograničeni od svih sljedećeg:" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against" +" any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "Vaš sadržaj" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "javno izvođenje i/ili pokazivanje bilo kojeg materijala web stranice;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "objavljivanje bilo kojeg materijala web stranice u bilo kojim drugim medijima;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "korištenje ove web stranice za uključivanje u bilo kakvo reklamiranje ili marketing." diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ca.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ca.po new file mode 100644 index 0000000..c255167 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ca.po @@ -0,0 +1,271 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2021-05-11 12:47+0000\n" +"Last-Translator: Haftec \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" +"**NOM DE LA COMPANYIA** té permès revisar aquests Termes en qualsevol moment " +"que ho consideri oportú, i a l'utilitzar aquest lloc web s'espera que els " +"revisi de forma regular." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Índex de Continguts" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Assignació" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid "" +#~ "A cookie is a small text file that a website stores on your computer or " +#~ "mobile device when you visit the site." +#~ msgstr "" +#~ "Una cookie (galeta) és un petit fitxer de text que un lloc web " +#~ "emmagatzema al vostre ordinador o dispositiu mòbil quan visiteu el lloc." + +#~ msgid "Terms of use" +#~ msgstr "Condicions d'ús" + +#~ msgid "privacy policy" +#~ msgstr "Política privacitat" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/de.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/de.po new file mode 100644 index 0000000..acea2b1 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/de.po @@ -0,0 +1,902 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2023-02-12 15:22+0000\n" +"Last-Translator: Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" +"**NAME DES UNTERNEHMENS** ist berechtigt, diese Bedingungen jederzeit nach " +"eigenem Ermessen zu überarbeiten, und durch die Nutzung dieser Website wird " +"von Ihnen erwartet, dass Sie diese Bedingungen regelmäßig überprüfen." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Inhaltsverzeichnis" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Zuweisung" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" +"Der Zugriff auf bestimmte Bereiche dieser Website ist für Sie gesperrt, und " +"**NAME DES UNTERNEHMENS** kann den Zugriff durch Sie auf alle Bereiche " +"dieser Website jederzeit nach eigenem Ermessen weiter einschränken. Alle " +"Benutzer-IDs und Passwörter, die Sie möglicherweise für diese Website haben, " +"sind vertraulich, und Sie müssen die Vertraulichkeit ebenfalls wahren." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "Geltendes Recht &amp; Zuständigkeit" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" +"Sollte sich herausstellen, dass eine Bestimmung dieser Bedingungen nach " +"geltendem Recht ungültig ist, werden diese Bestimmungen gelöscht, ohne dass " +"dies die übrigen Bestimmungen berühren." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" +"In keinem Fall haften **NAME DES UNTERNEHMENS** oder einer seiner leitenden " +"Angestellten, Direktoren und Mitarbeiter für irgendetwas, das sich aus oder " +"in irgendeiner Weise im Zusammenhang mit Ihrer Nutzung dieser Website " +"ergibt, unabhängig davon, ob eine solche Haftung vertraglich vereinbart " +"wurde. **NAME DES UNTERNEHMENS**, einschließlich seiner leitenden " +"Angestellten, Direktoren und Mitarbeiter, haftet nicht für indirekte, Folge- " +"oder besondere Haftungen, die sich aus oder in irgendeiner Weise im " +"Zusammenhang mit Ihrer Nutzung dieser Website ergeben." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" +"In diesen Allgemeinen Geschäftsbedingungen der Website bezeichnet „Ihr " +"Inhalt“ alle Audio-, Videotexte, Bilder oder andere Materialien, die Sie auf " +"dieser Website anzeigen möchten. Durch die Anzeige Ihrer Inhalte gewähren " +"Sie **NAME DES UNTERNEHMENS** eine nicht exklusive, weltweite, " +"unwiderrufliche, unterlizenzierbare Lizenz zur Nutzung, Vervielfältigung, " +"Anpassung, Veröffentlichung, Übersetzung und Verbreitung in allen Medien. " +"
\n" +" Ihre Inhalte müssen Ihre eigenen " +"sein und dürfen nicht die Rechte Dritter verletzen. **NAME DES " +"UNTERNEHMENS** behält sich das Recht vor, Ihre Inhalte jederzeit ohne " +"Vorankündigung von dieser Website zu entfernen." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "Entschädigung" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "Rechte an geistigem Eigentum" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "Einführung" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +#, fuzzy +msgid "Legal Page" +msgstr "Rechtliche Hinweise (Impressum)" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "Haftungsbeschränkung" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "Keine Garantien" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" +"Abgesehen von den Inhalten, die Sie besitzen, besitzen **NAME DES " +"UNTERNEHMENS** und/oder seine Lizenzgeber gemäß diesen Bedingungen alle " +"geistigen Eigentumsrechte und Materialien, die auf dieser Website enthalten " +"sind.
\n" +" Ihnen wird eine eingeschränkte " +"Lizenz nur zum Anzeigen des auf dieser Website enthaltenen Materials gewährt." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "Einschränkungen" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "Salvatorische Klausel" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" +"DIES IST EINE BEISPIELSEITE!
Bitte bearbeiten Sie diese Seite so, dass " +"sie für Ihren Anwendungsfall gültig ist." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" +"Der **NAME DES UNTERNEHMENS** darf seine Rechte und/oder Pflichten aus " +"diesen Bedingungen ohne vorherige Ankündigung abtreten, übertragen und " +"untervergeben. Es ist Ihnen jedoch nicht gestattet, Ihre Rechte und/oder " +"Pflichten aus diesen Bedingungen abzutreten, zu übertragen oder " +"weiterzuvergeben." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" +"Diese Bedingungen unterliegen den Gesetzen des Staates **LAND** und werden " +"in Übereinstimmung mit diesen ausgelegt, und Sie unterwerfen sich der nicht " +"ausschließlichen Zuständigkeit der staatlichen und bundesstaatlichen " +"Gerichte in **LAND** für die Lösung jeglicher Streitigkeiten." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" +"Diese auf dieser Webseite verfassten Allgemeinen Geschäftsbedingungen für " +"die Website regeln Ihre Nutzung unserer Website **NAME DER WEBSITE**, die " +"unter **URL der WEBSITE** zugänglich ist.
\n" +" Diese Bedingungen gelten vollständig " +"und wirken sich auf Ihre Nutzung dieser Website aus. Durch die Nutzung " +"dieser Website erklären Sie sich damit einverstanden, alle hierin " +"niedergelegten Bedingungen zu akzeptieren. Sie dürfen diese Website nicht " +"nutzen, wenn Sie mit diesen Allgemeinen Geschäftsbedingungen der Website " +"nicht einverstanden sind.
\n" +" Minderjährige oder Personen unter 18 " +"Jahren dürfen diese Website nicht nutzen." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" +"Diese Website wird „wie besehen“ mit allen Fehlern bereitgestellt, und " +"**NAME DES UNTERNEHMENS** gibt keinerlei Zusicherungen oder Gewährleistungen " +"jeglicher Art in Bezug auf diese Website oder die auf dieser Website " +"enthaltenen Materialien ab. Auch ist nichts auf dieser Website als Beratung " +"zu interpretieren." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "Änderung der Bedingungen" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "Sie sind ausdrücklich von allen folgenden eingeschränkt:" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" +"Sie stellen **NAME DES UNTERNEHMENS** hiermit in vollem Umfang von und/oder " +"allen Verbindlichkeiten, Kosten, Forderungen, Klagegründen, Schäden und " +"Ausgaben frei, die in irgendeiner Weise im Zusammenhang mit Ihrer Verletzung " +"einer der Bestimmungen dieser Bedingungen entstehen." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "Ihre Inhalte" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" +"Beteiligung an Data Mining, Datensammlung, Datenextraktion oder anderen " +"ähnlichen Aktivitäten in Bezug auf diese Website;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "öffentliches Aufführen und/oder Zeigen von Website-Material;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "Veröffentlichung von Website-Material in anderen Medien;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" +"Verkauf, Unterlizenzierung und/oder anderweitige Kommerzialisierung von " +"Website-Material;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" +"die Nutzung dieser Website gegen geltende Gesetze und Vorschriften verstößt " +"oder in irgendeiner Weise der Website oder einer Person oder einem " +"Unternehmen Schaden zufügen kann;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" +"Nutzung dieser Website in irgendeiner Weise, die sich auf den " +"Benutzerzugriff auf diese Website auswirkt;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" +"Nutzung dieser Website in irgendeiner Weise, die dieser Website schadet oder " +"schaden könnte;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "Nutzung dieser Website, um Werbung oder Marketing zu betreiben." + +#~ msgid "" +#~ "First party cookies&nbsp;are cookies set by the " +#~ "website\n" +#~ " you’re visiting. Only that website can read them. In " +#~ "addition, a\n" +#~ " website might potentially use external services, which " +#~ "also set their\n" +#~ " own cookies, known as third-party cookies." +#~ msgstr "" +#~ "First party cookies&nbsp;sind Cookies, die von der " +#~ "Website gesetzt werden\n" +#~ " Du bist zu Besuch. Nur diese Website kann sie lesen. " +#~ "Außerdem verwendet die\n" +#~ " Website möglicherweise externe Dienste, die auch ihre " +#~ "eigenen\n" +#~ " Cookies setzen, bekannt als Drittanbeiter-Cookies." +#~ "" + +#~ msgid "" +#~ "A cookie is a small text file that a website stores on your computer or " +#~ "mobile device when you visit the site." +#~ msgstr "" +#~ "Ein Cookie ist eine kleine Textdatei, die eine Website auf Ihrem Computer " +#~ "oder Mobilgerät speichert, wenn Sie die Website besuchen." + +#~ msgid "Cookies Policy" +#~ msgstr "Cookie-Richtlinie" + +#~ msgid "" +#~ "Cookies can also be used to establish anonymised statistics about the " +#~ "browsing experience on our sites." +#~ msgstr "" +#~ "Cookies können auch verwendet werden, um anonymisierte Statistiken über " +#~ "das Surferlebnis auf unseren Seiten zu erstellen." + +#~ msgid "" +#~ "Every time you visit our websites, you will be prompted to accept " +#~ "cookies." +#~ msgstr "" +#~ "Bei jedem Besuch unserer Websites werden Sie aufgefordert, " +#~ "Cookies zu akzeptieren." + +#~ msgid "How do we use cookies?" +#~ msgstr "Wie verwenden wir Cookies?" + +#~ msgid "" +#~ "However, to view some of our pages, you will have to accept cookies from " +#~ "external organisations. &nbsp;" +#~ msgstr "" +#~ "Um jedoch einige unserer Seiten anzuzeigen, müssen Sie Cookies von " +#~ "externen Organisationen akzeptieren. &nbsp;" + +#~ msgid "" +#~ "I accept the legal terms, the privacy policy & conditions of this " +#~ "website." +#~ msgstr "" +#~ "Ich akzeptiere die rechtlichen Bedingungen, die Datenschutzerklärung " +#~ "& Bedingungen dieser Website." + +#~ msgid "" +#~ "Persistent cookies&nbsp;are cookies saved on your computer and that " +#~ "are\n" +#~ " not deleted automatically when you quit your browser, " +#~ "unlike a&nbsp;session\n" +#~ " cookie,&nbsp;which is deleted when you quit your " +#~ "browser." +#~ msgstr "" +#~ "Dauerhafte Cookies&nbsp;sind Cookies, die auf Ihrem Computer " +#~ "gespeichert werden und \n" +#~ " nicht automatisch gelöscht werden, wenn Sie Ihren Browser " +#~ "schließen, im Gegensatz zu einer Sitzung,\n" +#~ " bei der das Cookie,&nbsp;gelöscht wird, wenn Sie " +#~ "Ihren Browser schließen." + +#~ msgid "" +#~ "That way, you don’t have to re-enter them when browsing around the site " +#~ "during the same visit." +#~ msgstr "" +#~ "Auf diese Weise müssen Sie sie nicht erneut eingeben, wenn Sie während " +#~ "desselben Besuchs auf der Website surfen." + +#~ msgid "The 3 types of first-party cookie we use are to:" +#~ msgstr "" +#~ "Die 3 Arten von Erstanbieter-Cookies die wir verwenden " +#~ "sind:" + +#~ msgid "" +#~ "The purpose is to enable the site to remember your preferences (such as " +#~ "user name, language, etc.) for a certain period of time." +#~ msgstr "" +#~ "Der Zweck besteht darin, der Website zu ermöglichen, sich Ihre " +#~ "Präferenzen (wie Benutzername, Sprache usw.) für einen bestimmten " +#~ "Zeitraum zu merken." + +#~ msgid "" +#~ "This websites mostly use “first-party cookies”. These are cookies set and " +#~ "controlled by us, not by any external organisation." +#~ msgstr "" +#~ "Diese Websites verwenden überwiegend „First-Party-Cookies“. Dies sind " +#~ "Cookies, die von uns gesetzt und kontrolliert werden, nicht von einer " +#~ "externen Organisation." + +#~ msgid "What are cookies?" +#~ msgstr "Was sind Cookies?" + +#~ msgid "gather analytics data (about user behaviour)" +#~ msgstr "Sammeln von Analysedaten (über das Nutzerverhalten)" + +#~ msgid "make our websites operational" +#~ msgstr "um unsere Websites funktionsfähig zu machen" + +#~ msgid "store visitor preferences" +#~ msgstr "Besucherpräferenzen speichern" + +#~ msgid "(\"us\", \"we\", or \"our\") operates" +#~ msgstr "(\"wir\", \"uns\" or \"unser\") betreibt die Website" + +#~ msgid "(\"us\", \"we\", or \"our\")." +#~ msgstr "(\"wir\", \"uns\" or \"unser\")." + +#~ msgid "" +#~ "(the \"Site\"). This page informs you of our policies regarding the\n" +#~ " collection, use and " +#~ "disclosure\n" +#~ " of Personal Information " +#~ "we receive from users of the Site." +#~ msgstr "" +#~ "(die \"Website\"). Diese Seite informiert Sie über unsere " +#~ "Datenschutzbestimmungen bezüglich der\n" +#~ " Sammlung, Verwendung und " +#~ "Offenlegung\n" +#~ " von persönlichen " +#~ "Informationen, die wir von unseren Kunden und Benutzern der Website " +#~ "erhalten." + +#~ msgid "" +#~ ",\n" +#~ " without regard to its " +#~ "conflict of law provisions." +#~ msgstr "" +#~ ",\n" +#~ " Konflikte mit anderen " +#~ "geltendem Recht bleiben unberücksichtigt." + +#~ msgid ", and the" +#~ msgstr "und die" + +#~ msgid ", the" +#~ msgstr ", die" + +#~ msgid "" +#~ "All provisions of the Terms which by their nature should survive\n" +#~ " termination shall " +#~ "survive\n" +#~ " termination, including, " +#~ "without limitation, ownership provisions,\n" +#~ " warranty disclaimers, " +#~ "indemnity\n" +#~ " and limitations of " +#~ "liability." +#~ msgstr "" +#~ "Alle Bestimmungen, die ihrem Wesen nach auch nach der Kündigung bestehen " +#~ "bleiben, wie z. B. Besitzbestimmungen, Gewährleistungsausschlüsse, " +#~ "Haftungsfreistellung und Haftungsbeschränkungen bleiben von der " +#~ "Beendigung unseres Service unberührt." + +#~ msgid "" +#~ "By accessing or using the Service you agree to be bound by these Terms.\n" +#~ " If you disagree with\n" +#~ " any part of the terms " +#~ "then you may not access the Service." +#~ msgstr "" +#~ "Indem Sie auf unseren Service zugreifen, stimmen Sie diesen Bedingungen " +#~ "zu. \n" +#~ " Wenn Sie mit einem Teil " +#~ "der Bedingungen nicht \n" +#~ " einverstanden sind, " +#~ "nutzen Sie unseren Service nicht." + +#~ msgid "Changes" +#~ msgstr "Änderungen" + +#~ msgid "Changes To This Privacy Policy" +#~ msgstr "Änderungen an diesen Datenschutzbestimmungen" + +#~ msgid "Contact Us" +#~ msgstr "Kontaktieren Sie uns" + +#~ msgid "" +#~ "Cookies are files with small amount of data, which may include an\n" +#~ " anonymous unique " +#~ "identifier.\n" +#~ " Cookies are sent to your " +#~ "browser from a web site and stored on your\n" +#~ " computer's hard drive." +#~ msgstr "" +#~ "Bei Cookies handelt es sich um Textdateien, die im Internetbrowser \n" +#~ " bzw. vom " +#~ "Internetbrowser auf dem Computersystem\n" +#~ " des Nutzers gespeichert " +#~ "werden. Ruft ein Nutzer eine\n" +#~ " Website auf, so kann " +#~ "ein Cookie auf dem Betriebssystem \n" +#~ " des Nutzers gespeichert " +#~ "werden." + +#~ msgid "Email address:" +#~ msgstr "Emailadresse:" + +#~ msgid "Governing Law" +#~ msgstr "Anwendbares Recht und Gerichtsstand" + +#~ msgid "I accept the" +#~ msgstr "Ich akzeptiere die" + +#~ msgid "If you have any questions about these Terms, please contact us." +#~ msgstr "" +#~ "Wenn Sie Fragen zu unseren Datenschutzbestimmungen haben, kontaktieren " +#~ "Sie uns bitte." + +#~ msgid "Information Collection And Use" +#~ msgstr "Sammlung und Verwendung von Informationen" + +#~ msgid "" +#~ "Like many site operators, we collect information that your browser sends\n" +#~ " whenever you visit our\n" +#~ " Site (\"Log Data\"). This " +#~ "Log Data may include information such as your\n" +#~ " computer's Internet\n" +#~ " Protocol (\"IP\") " +#~ "address, browser type, browser version, the pages of our\n" +#~ " Site that you visit, the\n" +#~ " time and date of your " +#~ "visit, the time spent on those pages and other\n" +#~ " statistics." +#~ msgstr "" +#~ "Für die Sicherstellung und Verbesserung unseres Services\n" +#~ " speichern wir " +#~ "Protokolldaten wie die IP-Adresse\n" +#~ " (Internet Protocol) " +#~ "Ihres Computers, den Browsertyp, die \n" +#~ " Browserversion, die von " +#~ "Ihnen besuchten Seiten unserer \n" +#~ " Site, die Uhrzeit und " +#~ "das Datum Ihres Besuchs.\n" +#~ " Die auf diesen Seiten " +#~ "verbrachte Zeit und\n" +#~ " andere enthalten " +#~ "Statistiken." + +#~ msgid "" +#~ "Like many sites, we use \"cookies\" to collect information. You can\n" +#~ " instruct your browser to " +#~ "refuse\n" +#~ " all cookies or to " +#~ "indicate when a cookie is being sent. However, if you\n" +#~ " do not accept cookies, " +#~ "you\n" +#~ " may not be able to use " +#~ "some portions of our Site." +#~ msgstr "" +#~ "Zum Betrieb der Website benötigen wir \"Cookies\". Sie können Ihren " +#~ "Browser\n" +#~ " anweisen, alle Cookies " +#~ "abzulehnen oder anzugeben,\n" +#~ " wenn ein Cookie gesendet " +#~ "wird. Wenn Sie jedoch keine\n" +#~ " Cookies akzeptieren, " +#~ "können Sie möglicherweise\n" +#~ " einige Teile unserer " +#~ "Website nicht nutzen." + +#~ msgid "Links To Other Web Sites" +#~ msgstr "Verlinkung zu anderen Websites" + +#~ msgid "Log Data" +#~ msgstr "Logfiles" + +#~ msgid "" +#~ "Our Service may contain links to third­party web sites or services that\n" +#~ " are not owned or " +#~ "controlled\n" +#~ " by ​us. We has no control " +#~ "over, and assumes no responsibility for, the\n" +#~ " content, privacy " +#~ "policies, or practices of any third party web sites or\n" +#~ " services. You further\n" +#~ " acknowledge and agree " +#~ "that ​we shall not be responsible or liable,\n" +#~ " directly or indirectly, " +#~ "for any damage or loss caused or alleged to be\n" +#~ " caused by or in " +#~ "connection\n" +#~ " with use of or reliance " +#~ "on any such content, goods or services available\n" +#~ " on or through any such\n" +#~ " web sites or services." +#~ msgstr "" +#~ "Unser Service kann Links zu Websites oder Dienstleistungen Dritter \n" +#~ " enthalten, die nicht im " +#~ "Eigentum oder unter \n" +#~ " unserer Kontrolle stehen. " +#~ "Wir haben keine \n" +#~ " Kontrolle über diese " +#~ "Seiten und übernehmen \n" +#~ " keine Verantwortung für " +#~ "den Inhalt, \n" +#~ " Datenschutzrichtlinien " +#~ "oder Praktiken von \n" +#~ " Websites oder Diensten " +#~ "Dritter. Sie stimmen \n" +#~ " zu, dass wir weder direkt " +#~ "noch indirekt für Schäden \n" +#~ " oder Verluste " +#~ "verantwortlich oder haftbar sind, \n" +#~ " die durch oder in " +#~ "Verbindung mit der Nutzung \n" +#~ " oder dem Vertrauen auf " +#~ "Inhalte, Waren oder \n" +#~ " Dienstleistungen durch " +#~ "solche Websites verursacht \n" +#~ " werden. Wir empfehlen " +#~ "Ihnen dringend, die allgemeinen \n" +#~ " Geschäftsbedingungen und " +#~ "Datenschutzrichtlinien von \n" +#~ " Websites oder Diensten " +#~ "Dritter zu lesen, die Sie besuchen." + +#~ msgid "" +#~ "Our failure to enforce any right or provision of these Terms will not be\n" +#~ " considered a waiver of\n" +#~ " those rights. If any " +#~ "provision of these Terms is held to be invalid or\n" +#~ " unenforceable by a court, " +#~ "the\n" +#~ " remaining provisions of " +#~ "these Terms will remain in effect. These Terms\n" +#~ " constitute the entire\n" +#~ " agreement between us " +#~ "regarding our Service, and supersede and replace\n" +#~ " any prior agreements\n" +#~ " we might have between us " +#~ "regarding the Service." +#~ msgstr "" +#~ "Diese Bedingungen unterliegen den Gesetzen von Deutschland, \n" +#~ " ungeachtet der " +#~ "Kollisionsnormen. \n" +#~ " Sollten einzelne " +#~ "Regelungen ganz oder teilweise \n" +#~ " unwirksam sein, so " +#~ "berührt dies die Wirksamkeit \n" +#~ " der übrigen Regelungen " +#~ "nicht. \n" +#~ " Diese " +#~ "Nutzungsbedingungen stellen die aktuelle \n" +#~ " Vereinbarung zwischen " +#~ "uns in Bezug auf unseren Service \n" +#~ " dar und ersetzen alle " +#~ "vorherigen Vereinbarungen." + +#~ msgid "Phone number:" +#~ msgstr "Telefon:" + +#~ msgid "" +#~ "Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully\n" +#~ " before using the" +#~ msgstr "" +#~ "Bitte lesen Sie unsere Nutzungsbedingungen sorgfältig durch, bevor Sie " +#~ "die Website" + +#~ msgid "Privacy Policy" +#~ msgstr "Datenschutzbestimmungen" + +#~ msgid "Security" +#~ msgstr "Datensicherheit" + +#~ msgid "Terms of Use (\"Terms\")" +#~ msgstr "Nutzungsbedingungen" + +#~ msgid "Terms of use" +#~ msgstr "Nutzungsbedingungen" + +#~ msgid "The owner of this website is" +#~ msgstr "Betreiber dieser Website ist" + +#~ msgid "" +#~ "The security of your Personal Information is important to us, but\n" +#~ " remember that no method " +#~ "of\n" +#~ " transmission over the " +#~ "Internet, or method of electronic storage, is 100%\n" +#~ " secure. While we strive " +#~ "to\n" +#~ " use commercially " +#~ "acceptable means to protect your Personal Information,\n" +#~ " we cannot guarantee\n" +#~ " its absolute security." +#~ msgstr "" +#~ "Die Sicherheit Ihrer persönlichen Daten ist uns wichtig. Bedenken Sie \n" +#~ " bitte, dass keine " +#~ "Methode der Übertragung über \n" +#~ " das Internet oder die " +#~ "Methode der elektronischen \n" +#~ " Speicherung 100% sicher " +#~ "ist. Obwohl wir bestrebt \n" +#~ " sind, Ihre Daten mit " +#~ "kommerziell vertretbaren \n" +#~ " Mitteln zu schützen, " +#~ "können wir keine absolute \n" +#~ " Sicherheit garantieren." + +#~ msgid "" +#~ "These Terms shall be governed and construed in accordance with the laws\n" +#~ " of ​" +#~ msgstr "Angewendet auf diese Nutzungsbedingungen wird das Recht von" + +#~ msgid "VAT number:" +#~ msgstr "Umsatzsteuer-ID:" + +#~ msgid "" +#~ "We may terminate or suspend access to our Service immediately, without\n" +#~ " prior notice or " +#~ "liability,\n" +#~ " for any reason " +#~ "whatsoever, including without limitation if you breach\n" +#~ " the Terms." +#~ msgstr "" +#~ "Wir können den Zugang zu unserem Service ohne vorherige \n" +#~ " Ankündigung oder Haftung " +#~ "aus welchem Grund auch \n" +#~ " immer beenden oder " +#~ "aussetzen, insbesondere, wenn \n" +#~ " Sie die Bedingungen " +#~ "verletzen." + +#~ msgid "" +#~ "We may update this Privacy Policy from time to time. We will notify\n" +#~ " you of any changes by " +#~ "posting the new Privacy Policy on the Site. You\n" +#~ " are advised to review " +#~ "this\n" +#~ " Privacy Policy " +#~ "periodically for any changes." +#~ msgstr "" +#~ "Wir können diese Datenschutzerklärung von Zeit zu Zeit aktualisieren. Wir " +#~ "werden Sie über Änderungen informieren, indem Sie die neue " +#~ "Datenschutzrichtlinie auf der Website veröffentlichen. Es wird empfohlen, " +#~ "diese Datenschutzrichtlinie regelmäßig auf Änderungen zu überprüfen." + +#~ msgid "" +#~ "We reserve the right, at our sole discretion, to modify or replace these\n" +#~ " Terms at any time. If a\n" +#~ " revision is material we " +#~ "will try to provide at least ​30 days notice\n" +#~ " prior to any new\n" +#~ " terms taking effect. What " +#~ "constitutes a material change will be\n" +#~ " determined at our sole " +#~ "discretion.\n" +#~ " By continuing to access " +#~ "or use our Service after those revisions become\n" +#~ " effective, you agree to\n" +#~ " be bound by the revised " +#~ "terms. If you do not agree to the new terms,\n" +#~ " please stop using the\n" +#~ " Service." +#~ msgstr "" +#~ "Wir behalten uns das Recht vor, diese Bedingungen jederzeit nach eigenem\n" +#~ " Ermessen zu ändern oder " +#~ "zu ersetzen. Wenn eine \n" +#~ " Überarbeitung wichtig " +#~ "ist, werden wir versuchen, Sie \n" +#~ " mindestens 30 Tage bevor " +#~ "neue Bedingungen in Kraft \n" +#~ " treten, im Voraus zu " +#~ "informieren. Was eine wesentliche \n" +#~ " Änderung darstellt, wird " +#~ "nach unserem alleinigen \n" +#~ " Ermessen bestimmt. Wenn " +#~ "Sie nach dem Inkrafttreten \n" +#~ " dieser Änderungen " +#~ "weiterhin auf unseren Service zugreifen \n" +#~ " oder diesen nutzen, " +#~ "erklären Sie sich den geänderten \n" +#~ " Bedingungen " +#~ "einverstanden. Wenn Sie den neuen \n" +#~ " Bedingungen nicht " +#~ "zustimmen, verwenden Sie unseren \n" +#~ " Service bitte nicht mehr." + +#~ msgid "" +#~ "We strongly advise you to read the terms and conditions and privacy\n" +#~ " policies of any third­" +#~ "party\n" +#~ " web sites or services " +#~ "that you visit." +#~ msgstr "" +#~ "Wir empfehlen Ihnen dringend, die allgemeinen Geschäftsbedingungen \n" +#~ " und " +#~ "Datenschutzrichtlinien von Websites oder Diensten \n" +#~ " Dritter zu lesen, die Sie " +#~ "besuchen." + +#~ msgid "" +#~ "We use your Personal Information only for providing and improving the\n" +#~ " Site. By using the Site,\n" +#~ " you agree to the " +#~ "collection and use of information in accordance with\n" +#~ " this policy." +#~ msgstr "" +#~ "Wir verwenden Ihre persönlichen Daten zur Bereitstellung und Verbesserung " +#~ "dieser\n" +#~ " Seite. Durch die Nutzung " +#~ "der Website\n" +#~ " stimmen Sie der Erhebung " +#~ "und Verwendung der Informationen \n" +#~ " gemäß der unserer " +#~ "Datenschutzbestimmungen zu." + +#~ msgid "" +#~ "While using our Site, we may ask you to provide us with certain\n" +#~ " personally identifiable " +#~ "information\n" +#~ " that can be used to " +#~ "contact or identify you. Personally identifiable\n" +#~ " information may include, " +#~ "but is\n" +#~ " not limited to your name " +#~ "(\"Personal Information\")." +#~ msgstr "" +#~ "Bei der Nutzung unserer Website bitten wir Sie möglicherweise, uns " +#~ "bestimmte personenbezogene Daten zur Verfügung zu stellen, die Sie " +#~ "verwenden können, um Sie zu kontaktieren oder zu identifizieren. " +#~ "Personenbezogene Daten können unter anderem Ihren Namen (\"Persönliche " +#~ "Daten\") enthalten." + +#~ msgid "You can contact us at:" +#~ msgstr "Kontakt:" + +#~ msgid "" +#~ "Your access to and use of the Service is conditioned on your acceptance\n" +#~ " of and compliance with\n" +#~ " these Terms. These Terms " +#~ "apply to all visitors, users and others who\n" +#~ " access or use the Service." +#~ msgstr "" +#~ "Ihr Zugang zu und die Nutzung des Service ist abhängig von Ihrem " +#~ "Einverständnis und Einhaltung dieser Bedingungen. Diese Bedingungen " +#~ "gelten für alle Besucher, Benutzer und andere, die auf den Service " +#~ "zugreifen oder ihn nutzen." + +#~ msgid "legal advice" +#~ msgstr "Rechtliche Hinweise (Impressum)" + +#~ msgid "of this website." +#~ msgstr "dieser Website." + +#~ msgid "privacy policy" +#~ msgstr "Datenschutzbestimmungen" + +#~ msgid "terms of use" +#~ msgstr "Nutzungsbedingungen" + +#~ msgid "website (the \"Service\") operated by ​" +#~ msgstr "(der \"Service\") bereitgestellt von ​" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/el_GR.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/el_GR.po new file mode 100644 index 0000000..4618e14 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/el_GR.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +#, fuzzy +msgid "Legal Page" +msgstr "νομική συμβουλή" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid ", and the" +#~ msgstr ", και το" + +#~ msgid ", the" +#~ msgstr ", το" + +#~ msgid "Terms of use" +#~ msgstr "Όροι χρήσης" + +#~ msgid "of this website." +#~ msgstr "σε αυτόν τον ιστότοπο." + +#~ msgid "privacy policy" +#~ msgstr "πολιτική απορρήτου" + +#~ msgid "terms of use" +#~ msgstr "όροι χρήσης" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es.po new file mode 100644 index 0000000..4171d50 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es.po @@ -0,0 +1,756 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-16 11:37+0000\n" +"PO-Revision-Date: 2023-09-03 13:39+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" +"**NOMBRE DE LA COMPAÑÍA** tiene permitido revisar estos Términos en " +"cualquier momento que lo considere oportuno, y al utilizar este sitio web se " +"espera que usted revise estos Términos de forma regular." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Índice de Contenidos" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Asignación" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" +"Ciertas áreas de este sitio web son de acceso restringido para usted, y " +"**NOMBRE DE LA EMPRESA** puede restringir aún más el acceso de usted a " +"cualquier área de este sitio web, en cualquier momento, a su absoluta " +"discreción. Cualquier identificación de usuario y contraseña que usted pueda " +"tener para este sitio web son confidenciales y usted debe mantener la " +"confidencialidad también." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "Ley Aplicable &amp; Jurisdicción" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" +"Si alguna de las disposiciones de las presentes condiciones resultara " +"inválida en virtud de la legislación aplicable, dicha disposición será " +"eliminada sin que ello afecte a las disposiciones restantes." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" +"En ningún caso **NOMBRE DE LA EMPRESA**, ni ninguno de sus directivos, " +"administradores y empleados, serán considerados responsables de nada que se " +"derive o esté relacionado de algún modo con el uso que usted haga de este " +"Sitio Web, con independencia de que dicha responsabilidad se derive de un " +"contrato. **NOMBRE DE LA EMPRESA**, incluidos sus directivos, " +"administradores y empleados, no serán responsables de ninguna " +"responsabilidad indirecta, consecuente o especial que se derive o esté " +"relacionada de algún modo con el uso que usted haga de este sitio web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" +"En estos Términos y condiciones estándar del sitio web, \"Su contenido\" " +"significará cualquier audio, texto de video, imágenes u otro material que " +"elija mostrar en este sitio web. Al mostrar Su Contenido, otorga ** NOMBRE " +"DE LA COMPAÑÍA ** una licencia sublicenciable no exclusiva, mundialmente " +"irrevocable y sublicenciable para usar, reproducir, adaptar, publicar, " +"traducir y distribuir en todos y cada uno de los medios.
\n" +" Su contenido debe ser suyo y no debe " +"invadir los derechos de terceros. ** NOMBRE DE LA COMPAÑÍA ** se reserva el " +"derecho de eliminar su contenido de este sitio web en cualquier momento sin " +"previo aviso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "Indemnización" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "Derechos de Propiedad Intelectual" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "Introducción" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "Aviso Legal" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "Limitación de responsabilidad" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "Sin garantías" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" +"Aparte del contenido que usted posee, bajo estos Términos, ** NOMBRE DE LA " +"COMPAÑÍA ** y / o sus licenciantes poseen todos los derechos de propiedad " +"intelectual y los materiales contenidos en este sitio web.
\n" +" Se le concede una licencia limitada " +"solo con el fin de ver el material contenido en este sitio web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "Restricciones" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "Divisibilidad" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" +"ESTA ES UNA PÁGINA DE EJEMPLO!
Por favor, edite esta página para que " +"sea válida para su caso de uso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" +"El ** NOMBRE DE LA COMPAÑÍA ** puede ceder, transferir y subcontratar sus " +"derechos y / u obligaciones bajo estos Términos sin notificación alguna. Sin " +"embargo, no se le permite ceder, transferir o subcontratar ninguno de sus " +"derechos y / u obligaciones bajo estos Términos." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" +"Estos Términos se regirán e interpretarán de acuerdo con las leyes del " +"estado de ** PAÍS **, y usted se somete a la jurisdicción no exclusiva de " +"los tribunales estatales y federales ubicados en ** PAÍS ** para la " +"resolución de cualquier disputas." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" +"Estos Términos y condiciones estándar del sitio web escritos en esta página " +"web administrarán su uso de nuestro sitio web, ** NOMBRE DEL SITIO WEB ** " +"accesible en ** URL DEL SITIO WEB **.
\n" +" Estos Términos se aplicarán en su " +"totalidad y afectarán a su uso de este sitio web. Al utilizar este sitio " +"web, usted acordó aceptar todos los términos y condiciones escritos aquí. No " +"debe utilizar este sitio web si no está de acuerdo con alguno de estos " +"Términos y condiciones estándar del sitio web.
\n" +" Los menores de edad o personas " +"menores de 18 años no pueden utilizar este sitio web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" +"Este sitio web se proporciona \"tal cual\", con todas las fallas, y ** " +"NOMBRE DE LA COMPAÑÍA ** no expresa representaciones ni garantías de ningún " +"tipo relacionadas con este sitio web o los materiales contenidos en este " +"sitio web. Además, nada de lo contenido en este sitio web se interpretará " +"como una advertencia." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "Variación de los Términos" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "Usted está específicamente restringido de todo lo siguiente:" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" +"Por la presente, usted indemniza en la mayor medida posible a ** NOMBRE DE " +"LA COMPAÑÍA ** de y contra cualquier y / o todas las responsabilidades, " +"costos, demandas, causas de acción, daños y gastos que surjan de cualquier " +"manera relacionados con su incumplimiento de cualquiera de las disposiciones " +"de estos Términos ." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "Tu contenido" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" +"participar en cualquier actividad de extracción de datos, recolección de " +"datos, extracción de datos o cualquier otra actividad similar en relación " +"con este sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" +"públicamente ejecutar, reproducir y/o mostrar cualquier material del sitio " +"web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "publicar cualquier material del sitio web en cualquier otro medio;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" +"vender, sublicenciar y/o comercializar de cualquier otro modo cualquier " +"material del sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" +"utilizar este sitio web de forma contraria a las leyes y normativas " +"aplicables, o que de cualquier forma pueda causar daños al sitio web, o a " +"cualquier entidad comercial o persona;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" +"utilizar este sitio web de cualquier forma que afecte al acceso de los " +"usuarios a este sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" +"utilizar este sitio web de cualquier forma que sea o pueda ser perjudicial " +"para el mismo;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" +"usar este sitio web para participar en cualquier tipo de publicidad o " +"marketing." + +#, fuzzy +#~ msgid "Cookies Policy" +#~ msgstr "Cookies" + +#~ msgid "(\"us\", \"we\", or \"our\") operates" +#~ msgstr "(\"nos\",\"nosotros\", o \"nuestro\") opera" + +#~ msgid "(\"us\", \"we\", or \"our\")." +#~ msgstr "(\"nos\", \"nosotros\", o \"nuestro\")." + +#~ msgid "" +#~ "(the \"Site\"). This page informs you of our policies regarding the\n" +#~ " collection, use and " +#~ "disclosure\n" +#~ " of Personal Information " +#~ "we receive from users of the Site." +#~ msgstr "" +#~ "la \"pagina\". Esta página le informa de nuestras políticas en cuanto a " +#~ "la\n" +#~ " recolección, uso y revelación\n" +#~ " de la Información personal que recibimos de los " +#~ "usuarios del Sitio." + +#~ msgid "" +#~ ",\n" +#~ " without regard to its " +#~ "conflict of law provisions." +#~ msgstr "" +#~ ",\n" +#~ " sin tener en cuenta su conflicto de disposiciones " +#~ "legales." + +#~ msgid ", and the" +#~ msgstr ", y los" + +#~ msgid ", the" +#~ msgstr ", la" + +#~ msgid "" +#~ "All provisions of the Terms which by their nature should survive\n" +#~ " termination shall " +#~ "survive\n" +#~ " termination, including, " +#~ "without limitation, ownership provisions,\n" +#~ " warranty disclaimers, " +#~ "indemnity\n" +#~ " and limitations of " +#~ "liability." +#~ msgstr "" +#~ "Todas las disposiciones de los términos que por su naturaleza deberían " +#~ "sobrevivir\n" +#~ " a la terminación sobrevivirán\n" +#~ " a la terminación, incluyendo las disposiciones de " +#~ "propiedad,\n" +#~ " renuncias de garantía, indemnización\n" +#~ " y limitaciones de responsabilidad." + +#~ msgid "" +#~ "By accessing or using the Service you agree to be bound by these Terms.\n" +#~ " If you disagree with\n" +#~ " any part of the terms " +#~ "then you may not access the Service." +#~ msgstr "" +#~ "Al acceder o utilizar el servicio usted acepta estar obligado por estos " +#~ "términos.\n" +#~ " Si está en desacuerdo con\n" +#~ " cualquier parte de los términos entonces no podrá " +#~ "acceder al servicio." + +#~ msgid "Changes" +#~ msgstr "Cambios" + +#~ msgid "Changes To This Privacy Policy" +#~ msgstr "Cambios en la Política de Privacidad" + +#~ msgid "Contact Us" +#~ msgstr "Contáctenos" + +#~ msgid "" +#~ "Cookies are files with small amount of data, which may include an\n" +#~ " anonymous unique " +#~ "identifier.\n" +#~ " Cookies are sent to your " +#~ "browser from a web site and stored on your\n" +#~ " computer's hard drive." +#~ msgstr "" +#~ "Las cookies son archivos con una pequeña cantidad de datos que pueden " +#~ "incluir un\n" +#~ " identificador único anónimo.\n" +#~ " Las cookies son enviadas a su navegador por un sitio " +#~ "web y almacenadas en\n" +#~ " el disco duro de su ordenador." + +#~ msgid "Email address:" +#~ msgstr "Dirección de correo electrónico:" + +#~ msgid "Governing Law" +#~ msgstr "Legislación" + +#~ msgid "I accept the" +#~ msgstr "Acepto los" + +#~ msgid "If you have any questions about these Terms, please contact us." +#~ msgstr "" +#~ "Si tiene alguna pregunta acerca de estos Términos, por favor contacte con " +#~ "nosotros." + +#~ msgid "Information Collection And Use" +#~ msgstr "Infomación acerca de la recopilación y uso de datos" + +#~ msgid "" +#~ "Like many site operators, we collect information that your browser sends\n" +#~ " whenever you visit our\n" +#~ " Site (\"Log Data\"). This " +#~ "Log Data may include information such as your\n" +#~ " computer's Internet\n" +#~ " Protocol (\"IP\") " +#~ "address, browser type, browser version, the pages of our\n" +#~ " Site that you visit, the\n" +#~ " time and date of your " +#~ "visit, the time spent on those pages and other\n" +#~ " statistics." +#~ msgstr "" +#~ "Como muchos otros operadores, coleccionamos la información que su " +#~ "navegador envía\n" +#~ " siempre que visita nuestro\n" +#~ " Sitio web (\"Datos del Usuario\"). Estos Datos del " +#~ "Usuario pueden incluir información como\n" +#~ " la dirección de Internet\n" +#~ " desde la que accede al sitio (\"IP\"), tipo de " +#~ "navegador, versión del navegador, las páginas de\n" +#~ " nuestro sitio web que visita, el\n" +#~ " tiempo y la fecha de su visita, el tiempo pasado en " +#~ "aquellas páginas y otras estadísticas." + +#~ msgid "" +#~ "Like many sites, we use \"cookies\" to collect information. You can\n" +#~ " instruct your browser to " +#~ "refuse\n" +#~ " all cookies or to " +#~ "indicate when a cookie is being sent. However, if you\n" +#~ " do not accept cookies, " +#~ "you\n" +#~ " may not be able to use " +#~ "some portions of our Site." +#~ msgstr "" +#~ "Como en muchos sitios web, usamos cookies para recabar cierta " +#~ "información. Puede\n" +#~ " configurar su navegador para rechazar\n" +#~ " todas las cookies o indicar cuándo una cookie está " +#~ "siendo enviada. Sin embargo, si\n" +#~ " no acepta cookies, podría\n" +#~ " no ser capaz de usar algunas partes de nuestro sitio " +#~ "web." + +#~ msgid "Links To Other Web Sites" +#~ msgstr "Enlaces a Otras Paginas Web" + +#~ msgid "Log Data" +#~ msgstr "Registrar Datos" + +#~ msgid "" +#~ "Our Service may contain links to third­party web sites or services that\n" +#~ " are not owned or " +#~ "controlled\n" +#~ " by ​us. We has no control " +#~ "over, and assumes no responsibility for, the\n" +#~ " content, privacy " +#~ "policies, or practices of any third party web sites or\n" +#~ " services. You further\n" +#~ " acknowledge and agree " +#~ "that ​we shall not be responsible or liable,\n" +#~ " directly or indirectly, " +#~ "for any damage or loss caused or alleged to be\n" +#~ " caused by or in " +#~ "connection\n" +#~ " with use of or reliance " +#~ "on any such content, goods or services available\n" +#~ " on or through any such\n" +#~ " web sites or services." +#~ msgstr "" +#~ "Nuestro servicio puede contener enlaces a sitios web de terceros o " +#~ "servicios que\n" +#~ " no son propiedad o " +#~ "controlados\n" +#~ " por nosotros. No tenemos " +#~ "el control sobre ellos y no asumimos ninguna responsabilidad por el\n" +#~ " contenido, políticas de " +#~ "privacidad o prácticas de sitios web de terceros\n" +#~ " servicios. Usted " +#~ "reconoce\n" +#~ " y acepta que nosotros no " +#~ "seremos responsables,\n" +#~ " directa o indirectamente, " +#~ "por cualquier daño o pérdida causada o supuestamente causada\n" +#~ " por o en relación con el " +#~ "uso o\n" +#~ " confianza de cualquier " +#~ "contenido, bienes o servicios\n" +#~ " disponibles en o\n" +#~ " a través de dichos sitios " +#~ "o servicios." + +#~ msgid "" +#~ "Our failure to enforce any right or provision of these Terms will not be\n" +#~ " considered a waiver of\n" +#~ " those rights. If any " +#~ "provision of these Terms is held to be invalid or\n" +#~ " unenforceable by a court, " +#~ "the\n" +#~ " remaining provisions of " +#~ "these Terms will remain in effect. These Terms\n" +#~ " constitute the entire\n" +#~ " agreement between us " +#~ "regarding our Service, and supersede and replace\n" +#~ " any prior agreements\n" +#~ " we might have between us " +#~ "regarding the Service." +#~ msgstr "" +#~ "Nuestra incapacidad para hacer cumplir cualquier derecho o disposición\n" +#~ " de estos términos no se considerará una renuncia a " +#~ "dichos derechos.\n" +#~ " Si cualquier disposición de estos Términos es inválida " +#~ "o inaplicable por\n" +#~ " un tribunal, el resto de las disposiciones de estos " +#~ "Términos seguirá en vigor.\n" +#~ " Estos Términos y condiciones constituyen el acuerdo " +#~ "completo entre nosotros\n" +#~ " con respecto a nuestro Servicio, y reemplazan cualquier " +#~ "acuerdo previo que\n" +#~ " podríamos tener entre nosotros con respecto al servicio." + +#~ msgid "Phone number:" +#~ msgstr "Número de teléfono:" + +#~ msgid "" +#~ "Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully\n" +#~ " before using the" +#~ msgstr "" +#~ "Por favor lea atentamente estos Términos de Uso atentamente\n" +#~ " antes de continuar" + +#~ msgid "Privacy Policy" +#~ msgstr "Política de Privacidad" + +#~ msgid "Security" +#~ msgstr "Seguridad" + +#~ msgid "Terms of Use (\"Terms\")" +#~ msgstr "Términos de Uso" + +#~ msgid "Terms of use" +#~ msgstr "Términos de Uso" + +#~ msgid "The owner of this website is" +#~ msgstr "El propietario de esta web es" + +#~ msgid "" +#~ "The security of your Personal Information is important to us, but\n" +#~ " remember that no method " +#~ "of\n" +#~ " transmission over the " +#~ "Internet, or method of electronic storage, is 100%\n" +#~ " secure. While we strive " +#~ "to\n" +#~ " use commercially " +#~ "acceptable means to protect your Personal Information,\n" +#~ " we cannot guarantee\n" +#~ " its absolute security." +#~ msgstr "" +#~ "La seguridad de su Información personal es importante para nosotros, " +#~ "pero\n" +#~ " recuerde que ningún " +#~ "método de la\n" +#~ " transmisión en Internet o " +#~ "método de almacenaje electrónico, es 100%\n" +#~ " seguro. Aunque nos " +#~ "esforzamos por\n" +#~ " utilizar medios " +#~ "comercialmente aceptables para proteger su información personal, \n" +#~ " no podemos garantizar que " +#~ "sea absolutamente seguridad." + +#~ msgid "" +#~ "These Terms shall be governed and construed in accordance with the laws\n" +#~ " of ​" +#~ msgstr "" +#~ "Estos Términos se regirán e interpretarán de conformidad con la leyes\n" +#~ " de ​" + +#~ msgid "VAT number:" +#~ msgstr "NIF:" + +#~ msgid "" +#~ "We may terminate or suspend access to our Service immediately, without\n" +#~ " prior notice or " +#~ "liability,\n" +#~ " for any reason " +#~ "whatsoever, including without limitation if you breach\n" +#~ " the Terms." +#~ msgstr "" +#~ "Podemos cancelar o suspender el acceso a nuestro servicio inmediatamente " +#~ "sin previo aviso o responsabilidad por cualquier razón sin limitación en " +#~ "caso de incumplimiento de los términos." + +#~ msgid "" +#~ "We may update this Privacy Policy from time to time. We will notify\n" +#~ " you of any changes by " +#~ "posting the new Privacy Policy on the Site. You\n" +#~ " are advised to review " +#~ "this\n" +#~ " Privacy Policy " +#~ "periodically for any changes." +#~ msgstr "" +#~ "Podemos actualizar cambios en esta Política de privacidad de vez en " +#~ "cuando. Le notificaremos cualquier cambio fijando la nueva Política de " +#~ "privacidad en el Sitio. Le aconsejamos examinar esta Política de " +#~ "privacidad periódicamente para cualquier cambio." + +#, fuzzy +#~ msgid "" +#~ "We reserve the right, at our sole discretion, to modify or replace these\n" +#~ " Terms at any time. If a\n" +#~ " revision is material we " +#~ "will try to provide at least ​30 days notice\n" +#~ " prior to any new\n" +#~ " terms taking effect. What " +#~ "constitutes a material change will be\n" +#~ " determined at our sole " +#~ "discretion.\n" +#~ " By continuing to access " +#~ "or use our Service after those revisions become\n" +#~ " effective, you agree to\n" +#~ " be bound by the revised " +#~ "terms. If you do not agree to the new terms,\n" +#~ " please stop using the\n" +#~ " Service." +#~ msgstr "" +#~ "Reservamos el derecho, a nuestra propia discreción, de modificar o " +#~ "sustituir estos Términos en cualquier momento. Si una revisión es " +#~ "material trataremos de proporcionar aviso de al menos ​30 días antes de " +#~ "que cualquier nuevo término entrase en vigor. Lo que constituye un cambio " +#~ "material será determinado a nuestra propia discreción. Si sigue teniendo " +#~ "acceso o usando nuestro Servicio después de que aquellas revisiones " +#~ "entren en vigor, consiente en ser ligado por los términos revisados. Si " +#~ "no está de acuerdo con los nuevos términos, por favor deje de usar el " +#~ "Servicio" + +#, fuzzy +#~ msgid "" +#~ "We strongly advise you to read the terms and conditions and privacy\n" +#~ " policies of any third­" +#~ "party\n" +#~ " web sites or services " +#~ "that you visit." +#~ msgstr "" +#~ "Aconsejamos que lea los términos y condiciones y políticas de privacidad " +#~ "de los sitios web de terceros o servicios que usted visite." + +#, fuzzy +#~ msgid "" +#~ "We use your Personal Information only for providing and improving the\n" +#~ " Site. By using the Site,\n" +#~ " you agree to the " +#~ "collection and use of information in accordance with\n" +#~ " this policy." +#~ msgstr "" +#~ "Usamos su Informacion Personal solamente para proporcionar y mejorar el " +#~ "sitio. Al utilizar el Sitio, usted acepta la recopilación y uso de " +#~ "información de acuerdo con esta política." + +#, fuzzy +#~ msgid "" +#~ "While using our Site, we may ask you to provide us with certain\n" +#~ " personally identifiable " +#~ "information\n" +#~ " that can be used to " +#~ "contact or identify you. Personally identifiable\n" +#~ " information may include, " +#~ "but is\n" +#~ " not limited to your name " +#~ "(\"Personal Information\")." +#~ msgstr "" +#~ "Durante el uso de nuestro sitio podremos pedirle que nos proporcione " +#~ "cierta información que puede ser usada para contactar o identificarle. La " +#~ "información podria incluir, pero no está limitada a su nombre " +#~ "(Información Personal)." + +#~ msgid "You can contact us at:" +#~ msgstr "Puede contactar con nosotros en:" + +#~ msgid "" +#~ "Your access to and use of the Service is conditioned on your acceptance\n" +#~ " of and compliance with\n" +#~ " these Terms. These Terms " +#~ "apply to all visitors, users and others who\n" +#~ " access or use the Service." +#~ msgstr "" +#~ "El acceso y uso del servicio está condicionado a la aceptación\n" +#~ " y cumplimiento\n" +#~ " de estos términos. Estos términos se aplican a todos " +#~ "los visitantes, usuarios y otros que\n" +#~ " accedan o usen el servicio." + +#~ msgid "legal advice" +#~ msgstr "aviso legal" + +#~ msgid "of this website." +#~ msgstr "de este sitio web." + +#~ msgid "privacy policy" +#~ msgstr "política de privacidad" + +#~ msgid "terms of use" +#~ msgstr "términos de Uso" + +#~ msgid "website (the \"Service\") operated by ​" +#~ msgstr "website (el \"Servicio\") operado por ​" + +#~ msgid "Fax number:" +#~ msgstr "Fax:" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es_AR.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es_AR.po new file mode 100644 index 0000000..f1982f9 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/es_AR.po @@ -0,0 +1,337 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-03-31 04:46+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: none\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" +"**NOMBRE DE LA COMPAÑÍA** tiene permitido revisar estos Términos en " +"cualquier momento que lo considere oportuno, y al utilizar este sitio web se " +"espera que los revise de forma regular." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Índice de Contenido" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Asignación" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" +"Ciertas áreas de este sitio web tienen restringido el acceso a usted y " +"**NOMBRE DE LA COMPAÑÍA** puede restringir aún más el acceso a cualquier " +"área de este sitio web, en cualquier momento, a absoluta discreción. " +"Cualquier ID de usuario y contraseña que pueda tener para este sitio web son " +"confidenciales y también debe mantener la confidencialidad." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "Ley Aplicable &amp; Jurisdicción" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" +"Si se determina que alguna disposición de estos Términos no es válida según " +"la ley aplicable, dichas disposiciones se eliminarán sin afectar las " +"disposiciones restantes del presente." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" +"En ningún caso **NOMBRE DE LA COMPAÑÍA**, ni ninguno de sus funcionarios, " +"directores y empleados, serán responsables de cualquier cosa que surja de o " +"de alguna manera relacionada con su uso de este sitio web, ya sea que dicha " +"responsabilidad esté bajo contrato. **NOMBRE DE LA COMPAÑÍA**, incluidos sus " +"funcionarios, directores y empleados, no serán responsables de ninguna " +"responsabilidad indirecta, consecuente o especial que surja de o de alguna " +"manera relacionada con su uso de este sitio web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" +"En estos Términos y Condiciones Estándar del Sitio web, \"Su contenido\" " +"significará cualquier audio, texto, video, imágenes u otro material que " +"elija mostrar en este sitio web. Al mostrar Su Contenido, usted otorga a " +"**NOMBRE DE LA COMPAÑÍA** una licencia sublicenciable no exclusiva, " +"mundialmente irrevocable y sublicenciable para usarlo, reproducirlo, " +"adaptarlo, publicarlo, traducirlo y distribuirlo en todos y cada uno de los " +"medios.
\n" +" Su contenido debe ser suyo y no " +"debe invadir los derechos de terceros. **NOMBRE DE LA COMPAÑÍA** se reserva " +"el derecho de eliminar su contenido de este sitio web en cualquier momento " +"sin previo aviso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "Indemnización" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "Derechos de Propiedad Intelectual" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "Introducción" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "Página Legal" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "Limitación de responsabilidad" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "Sin garantías" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" +"Aparte del contenido que posee, bajo estos Términos, **NOMBRE DE LA " +"COMPAÑÍA** y/o sus licenciantes poseen todos los derechos de propiedad " +"intelectual y los materiales contenidos en este sitio web.
\n" +" Se le concede una licencia limitada " +"solo con el fin de ver el material contenido en este sitio web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "Restricciones" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "Divisibilidad" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" +"¡ESTA ES UNA PAGINA DE MUESTRA!
Por favor, edite esta página para que " +"sea válida con su caso de uso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" +"**NOMBRE DE LA COMPAÑÍA** puede ceder, transferir y subcontratar sus " +"derechos y/u obligaciones bajo estos Términos sin notificación alguna. Sin " +"embargo, no se le permite ceder, transferir o subcontratar ninguno de sus " +"derechos y/u obligaciones bajo estos Términos." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" +"Estos Términos se regirán e interpretarán de acuerdo con las leyes del " +"estado de **PAÍS**, y usted se somete a la jurisdicción no exclusiva de los " +"tribunales estatales y federales ubicados en **PAÍS** para la resolución de " +"cualquier disputa." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" +"Estos Términos y condiciones estándar del sitio web escritos en esta página " +"web administrarán su uso de nuestro sitio web, **NOMBRE DEL SITIO WEB** " +"accesible en **URL DEL SITIO WEB**.
\n" +" Estos Términos se aplicarán en su " +"totalidad y afectarán a su uso de este sitio web. Al utilizar este sitio " +"web, acordó aceptar todos los términos y condiciones aquí escritos. No debe " +"utilizar este sitio web si no está de acuerdo con alguno de estos Términos y " +"condiciones estándar del sitio web.
\n" +" Los menores de edad o personas " +"menores de 18 años no pueden utilizar este sitio web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" +"Este sitio web se proporciona \"tal cual\", con todas las fallas, y **NOMBRE " +"DE LA COMPAÑÍA** no expresa representaciones ni garantías de ningún tipo " +"relacionadas con este sitio web o los materiales contenidos en este sitio " +"web. Además, nada de lo contenido en este sitio web se interpretará como una " +"advertencia." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "Variación de Términos" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "Está restringido específicamente para todo lo siguiente:" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" +"Por la presente, usted indemniza en la mayor medida posible a **NOMBRE DE LA " +"COMPAÑÍA** de y contra cualquiera de todas las responsabilidades, costos, " +"demandas, causas de acción, daños y gastos que surjan de cualquier manera " +"relacionados con el incumplimiento de cualquiera de las disposiciones de " +"estos Términos." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "Su Contenido" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" +"participar en cualquier extracción de datos, recolección de datos, " +"extracción de datos o cualquier otra actividad similar en relación con este " +"sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "ejecutar en público y/o mostrar cualquier material del sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "publicar cualquier material del sitio web en cualquier otro medio;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" +"vender, otorgar sublicencias y/o comercializar cualquier material del sitio " +"web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" +"el uso de este sitio web en contra de las leyes y regulaciones aplicables, o " +"de cualquier manera puede causar daño al sitio web, o a cualquier persona o " +"entidad comercial;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" +"usar este sitio web de cualquier manera que afecte el acceso del usuario a " +"este sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" +"usar este sitio web de cualquier manera que sea o pueda ser perjudicial para " +"este sitio web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" +"usar este sitio web para participar en cualquier tipo de publicidad o " +"marketing." + +#~ msgid "" +#~ "I accept the legal terms, the privacy policy & conditions of this " +#~ "website." +#~ msgstr "" +#~ "Acepto los términos legales, la política de privacidad & condiciones " +#~ "de este sitio web." diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/fr.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/fr.po new file mode 100644 index 0000000..26a63e9 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/fr.po @@ -0,0 +1,276 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +#, fuzzy +msgid "Legal Page" +msgstr "mentions légales" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid ", and the" +#~ msgstr ", et les" + +#~ msgid ", the" +#~ msgstr ", la" + +#~ msgid "I accept the" +#~ msgstr "J'accepte les" + +#~ msgid "Terms of use" +#~ msgstr "Conditions d'utilisation" + +#~ msgid "of this website." +#~ msgstr "du site web" + +#~ msgid "privacy policy" +#~ msgstr "politique de vie privée" + +#~ msgid "terms of use" +#~ msgstr "conditions d'utilisation" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/hr_HR.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/hr_HR.po new file mode 100644 index 0000000..b047e7b --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/hr_HR.po @@ -0,0 +1,278 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +#, fuzzy +msgid "Legal Page" +msgstr "pravni naputak" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid ", and the" +#~ msgstr ", i " + +#~ msgid ", the" +#~ msgstr ", " + +#~ msgid "I accept the" +#~ msgstr "Prihvaćam" + +#~ msgid "Terms of use" +#~ msgstr "Uvijeti korištenja" + +#~ msgid "of this website." +#~ msgstr "ovih webstranica." + +#~ msgid "privacy policy" +#~ msgstr "izjava privatnosti" + +#~ msgid "terms of use" +#~ msgstr "uvijeti korištenja" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/it.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/it.po new file mode 100644 index 0000000..ffa8c8e --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/it.po @@ -0,0 +1,467 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2023-11-15 09:38+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" +"**NOME AZIENDA** è autorizzato a modificare i presenti Termini in qualsiasi " +"momento come meglio crede e, utilizzando questo sito Web, l'utente è tenuto " +"a rivedere questi Termini su base regolare." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Indice dei contenuti" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Incarico" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" +"Ad alcune aree di questo sito Web è vietato l'accesso e **NOME AZIENDA** può " +"limitare ulteriormente l'accesso da parte dell'utente a qualsiasi area di " +"questo sito Web, in qualsiasi momento, a assoluta discrezione. Qualsiasi ID " +"utente e password in suo possesso per questo sito Web sono confidenziali e " +"vanno mantenuti riservati." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "Foro competente &amp; Giurisdizione" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" +"Se una qualsiasi clausola di questi Termini viene ritenuta non valida ai " +"sensi di qualsiasi legge applicabile, tale clausola verrà ritenuta nulla, " +"senza influire sulle restanti condizioni del presente documento." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" +"In nessun caso **NOME AZIENDALE**, né alcuno dei suoi funzionari, direttori " +"e dipendenti, potrà essere ritenuto responsabile per qualsiasi cosa " +"derivante da o in qualsiasi modo connessa con l'utilizzo di questo sito Web " +"da parte dell'utente, indipendentemente dal fatto che tale responsabilità " +"sia contrattualmente rilevante. **NOME DELLA SOCIETA'**, compresi i suoi " +"funzionari, direttori e dipendenti, non saranno ritenuti responsabili per " +"alcuna responsabilità indiretta, consequenziale o speciale derivante da o in " +"qualsiasi modo correlata all'utilizzo di questo sito Web da parte " +"dell'utente." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" +"In questi Termini e condizioni standard del sito Web, \"Il tuo contenuto\" " +"indica qualsiasi testo audio, video, immagine o altro materiale che scegli " +"di pubblicare e rendere visibule su questo sito Web. Pubbblicanto i tuoi " +"contenuti, concedi a **NOME AZIENDA** una licenza non esclusiva, " +"irrevocabile, senza limiti territoriali e concedibile in sub-licenza al fine " +"di utilizzarli, riprodurli, adattarli, pubblicarli, tradurli e distribuirli " +"su qualsiasi supporto.
\n" +" I tuoi Contenuti devono essere " +"inediti e di tua proprietà e non devono violare i diritti di terze parti. " +"**NOME AZIENDA** si riserva il diritto di rimuovere qualsiasi contenuto " +"dell'utente da questo sito Web in qualsiasi momento senza preavviso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "Indennizzo" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "Diritti di proprietà intellettuale" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "Introduzione" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "Informazioni legali" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "Limitazione di responsabilità" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "Nessuna garanzia" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" +"A parte il contenuto che possiedi, in base ai presenti Termini, **NOME " +"AZIENDA** e/o i suoi licenziatari sono titolari di tutti i diritti di " +"proprietà intellettuale e dei materiali contenuti in questo sito Web.
\n" +" Ti viene concessa una licenza " +"limitata solo ai fini della visualizzazione del materiale contenuto in " +"questo sito Web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "Restrizioni" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "Separabilità" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" +"QUESTA È UNA PAGINA DI ESEMPIO!
Per favore, modifica questa pagina in " +"modo che sia valida con il tuo caso d'uso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" +"Il **NOME DELLA SOCIETA'** è autorizzato a cedere, trasferire e subappaltare " +"i propri diritti e/o obblighi ai sensi dei presenti Termini senza alcuna " +"notifica. Tuttavia, non sei autorizzato a cedere, trasferire o subappaltare " +"nessuno dei tuoi diritti e/o obblighi ai sensi dei presenti Termini." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" +"I presenti Termini saranno regolati e interpretati in conformità con le " +"leggi dello Stato del **PAESE** e l'utente si sottopone alla giurisdizione " +"non esclusiva dei tribunali statali e federali con sede nel **PAESE** per la " +"risoluzione di qualsiasi controversie." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" +"I presenti Termini e condizioni standard del sito Web scritti su questa " +"pagina Web gestiranno l'utilizzo del nostro sito Web, **NOME DEL SITO WEB** " +"accessibile all'indirizzo **URL DEL SITO WEB**.
\n" +" I presenti Termini verranno " +"applicati integralmente e influiranno sull'utilizzo di questo sito Web da " +"parte dell'utente. Utilizzando questo sito Web, hai accettato di accettare " +"tutti i termini e le condizioni qui scritti. Non devi utilizzare questo sito " +"Web se non sei d'accordo con uno qualsiasi di questi Termini e condizioni " +"standard del sito Web.
\n" +" I minori o le persone di età " +"inferiore ai 18 anni non sono autorizzati a utilizzare questo sito Web." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" +"Questo sito Web è fornito \"così com'è\", con tutti i difetti, e **NOME " +"AZIENDA** non esprime alcuna dichiarazione o garanzia, di alcun tipo in " +"relazione a questo sito Web o ai materiali contenuti in questo sito Web. " +"Inoltre, nulla di quanto contenuto in questo sito Web deve essere " +"interpretato come un avviso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "Variazione dei Termini" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "L'utente è specificamente limitato da quanto segue:" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" +"Con la presente indennizzi nella misura massima **NOME AZIENDA** da e contro " +"qualsiasi e/o tutte le responsabilità, costi, richieste, cause di azione, " +"danni e spese derivanti in qualsiasi modo dalla violazione di una qualsiasi " +"delle disposizioni di questi Termini ." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "I tuoi contenuti" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" +"impegnarsi in qualsiasi attività di data mining, raccolta di dati, " +"estrazione di dati o qualsiasi altra attività simile in relazione a questo " +"sito Web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "eseguire pubblicamente e/o mostrare qualsiasi materiale del sito Web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" +"pubblicare qualsiasi materiale del sito Web su qualsiasi altro supporto;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" +"vendere, concedere in sublicenza e/o commercializzare in altro modo " +"qualsiasi materiale del sito Web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" +"l'utilizzo di questo sito Web in violazione delle leggi e dei regolamenti " +"applicabili o in qualsiasi modo può causare danni al sito Web o a qualsiasi " +"persona fisica o giuridica;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" +"utilizzare questo sito Web in qualsiasi modo che influisca sull'accesso " +"degli utenti a questo sito Web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" +"utilizzare questo sito Web in qualsiasi modo che sia o possa essere dannoso " +"per questo sito Web;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" +"utilizzando questo sito Web per impegnarsi in qualsiasi pubblicità o " +"marketing." + +#~ msgid "" +#~ "First party cookies&nbsp;are cookies set by the " +#~ "website\n" +#~ " you’re visiting. Only that website can read them. In " +#~ "addition, a\n" +#~ " website might potentially use external services, which " +#~ "also set their\n" +#~ " own cookies, known as third-party cookies." +#~ msgstr "" +#~ "I cookie proprietari&nbsp;sono cookie impostati dal " +#~ "sito web che\n" +#~ " stai visitando. Solo questo sito web può leggerli. " +#~ "Inoltre, un\n" +#~ " sito potrebbe eventualmente utilizzare servizi esterni, " +#~ "che a loro volta, possono impostare \n" +#~ " propri cookie, noti come cookie di terze parti." + +#~ msgid "" +#~ "A cookie is a small text file that a website stores on your computer or " +#~ "mobile device when you visit the site." +#~ msgstr "" +#~ "Un cookie è un piccolo file di testo che un sito web memorizza sul tuo " +#~ "computer o dispositivo mobile quando visiti il sito." + +#~ msgid "Cookies Policy" +#~ msgstr "Politica sui Cookie" + +#~ msgid "" +#~ "Cookies can also be used to establish anonymised statistics about the " +#~ "browsing experience on our sites." +#~ msgstr "" +#~ "I cookie possono essere utilizzati anche per stabilire statistiche " +#~ "anonime sull'esperienza di navigazione sui nostri siti." + +#~ msgid "" +#~ "Every time you visit our websites, you will be prompted to accept " +#~ "cookies." +#~ msgstr "" +#~ "Ogni volta che visiti i nostri siti web, ti verrà chiesto di " +#~ "accettare i cookie." + +#~ msgid "How do we use cookies?" +#~ msgstr "Come utilizziamo i cookie?" + +#~ msgid "" +#~ "However, to view some of our pages, you will have to accept cookies from " +#~ "external organisations. &nbsp;" +#~ msgstr "" +#~ "Tuttavia, per visualizzare alcune delle nostre pagine, dovrai accettare i " +#~ "cookie di organizzazioni esterne. &nbsp;" + +#~ msgid "" +#~ "I accept the legal terms, the privacy policy & conditions of this " +#~ "website." +#~ msgstr "" +#~ "Accetto i termini legali, l'informativa sulla privacy & condizioni di " +#~ "questo sito web." + +#~ msgid "" +#~ "Persistent cookies&nbsp;are cookies saved on your computer and that " +#~ "are\n" +#~ " not deleted automatically when you quit your browser, " +#~ "unlike a&nbsp;session\n" +#~ " cookie,&nbsp;which is deleted when you quit your " +#~ "browser." +#~ msgstr "" +#~ "I cookie persistenti&nbsp;sono cookie salvati sul tuo computer e che\n" +#~ " non vengono eliminati automaticamente quando esci dal " +#~ "browser, a differenza di una sessione di&nbsp;\n" +#~ " cookie standard,&nbsp;che vengono sempre eliminato " +#~ "quando esci dal browser." + +#~ msgid "" +#~ "That way, you don’t have to re-enter them when browsing around the site " +#~ "during the same visit." +#~ msgstr "" +#~ "In questo modo, non è necessario reinserirli durante la navigazione nel " +#~ "sito durante la stessa visita." + +#~ msgid "The 3 types of first-party cookie we use are to:" +#~ msgstr "" +#~ "I 3 tipi di cookie proprietari che utilizziamo sono:" + +#~ msgid "" +#~ "The purpose is to enable the site to remember your preferences (such as " +#~ "user name, language, etc.) for a certain period of time." +#~ msgstr "" +#~ "Lo scopo è consentire al sito di ricordare le tue preferenze (come nome " +#~ "utente, lingua, ecc.) per un certo periodo di tempo." + +#~ msgid "" +#~ "This websites mostly use “first-party cookies”. These are cookies set and " +#~ "controlled by us, not by any external organisation." +#~ msgstr "" +#~ "Questi siti Web utilizzano principalmente \"cookie di prima parte\". Si " +#~ "tratta di cookie impostati e controllati da noi, non da alcuna " +#~ "organizzazione esterna." + +#~ msgid "What are cookies?" +#~ msgstr "Cosa sono i cookie?" + +#~ msgid "gather analytics data (about user behaviour)" +#~ msgstr "raccogliere dati analitici (sul comportamento degli utenti)" + +#~ msgid "make our websites operational" +#~ msgstr "rendere operativi i nostri siti web" + +#~ msgid "store visitor preferences" +#~ msgstr "memorizzare le preferenze dei visitatori" + +#~ msgid ", and the" +#~ msgstr ", e le" + +#~ msgid ", the" +#~ msgstr ", l'" + +#~ msgid "Terms of use" +#~ msgstr "Condizioni d'uso" + +#~ msgid "of this website." +#~ msgstr "di questo sito." + +#~ msgid "privacy policy" +#~ msgstr "informativa sulla privacy" + +#~ msgid "terms of use" +#~ msgstr "condizioni d'uso" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/nb_NO.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/nb_NO.po new file mode 100644 index 0000000..601884c --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/nb_NO.po @@ -0,0 +1,273 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid ", and the" +#~ msgstr ", og" + +#~ msgid "I accept the" +#~ msgstr "Jeg aksepterer" + +#~ msgid "Terms of use" +#~ msgstr "Bruksvilkår" + +#~ msgid "of this website." +#~ msgstr "til denne nettsiden." + +#~ msgid "privacy policy" +#~ msgstr "privatlivspolicy" + +#~ msgid "terms of use" +#~ msgstr "bruksvilkår" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_BR.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_BR.po new file mode 100644 index 0000000..0974d19 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_BR.po @@ -0,0 +1,782 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2024-07-06 21:58+0000\n" +"Last-Translator: Rodrigo Sottomaior Macedo " +"\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" +"**NOME DA EMPRESA** tem permissão para revisar estes Termos a qualquer " +"momento conforme achar adequado e, ao usar este Site, espera-se que você " +"revise estes Termos regularmente." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "Índice" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "Atribuição" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" +"Certas áreas deste Site estão proibidas de serem acessadas por você e **NOME " +"DA EMPRESA** pode restringir ainda mais o seu acesso a quaisquer áreas deste " +"Site, a qualquer momento, a critério absoluto. Qualquer ID de usuário e " +"senha que você possa ter neste Site são confidenciais e você também deve " +"manter a confidencialidade." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "Lei Aplicável e Jurisdição" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" +"Se qualquer disposição destes Termos for considerada inválida sob qualquer " +"lei aplicável, tais disposições serão excluídas sem afetar as demais " +"disposições aqui contidas." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" +"Em nenhum caso a **NOME DA EMPRESA**, nem qualquer um de seus executivos, " +"diretores e funcionários, será responsabilizado por qualquer coisa " +"decorrente ou de alguma forma relacionada ao uso deste Site, " +"independentemente de tal responsabilidade estar sob contrato. **NOME DA " +"EMPRESA**, incluindo seus dirigentes, diretores e funcionários, não serão " +"responsabilizados por qualquer responsabilidade indireta, consequencial ou " +"especial decorrente ou de alguma forma relacionada ao uso deste site." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" +"Nestes Termos e Condições Padrão do Site, “Seu Conteúdo” significa qualquer " +"áudio, texto de vídeo, imagens ou outro material que você opte por exibir " +"neste Site. Ao exibir Seu Conteúdo, você concede à **NOME DA EMPRESA** uma " +"licença não exclusiva, irrevogável e sublicenciável em todo o mundo para usá-" +"lo, reproduzi-lo, adaptá-lo, publicá-lo, traduzi-lo e distribuí-lo em toda e " +"qualquer mídia.
\n" +" Seu Conteúdo deve ser seu e não deve " +"estar invadindo os direitos de terceiros. **NOME DA EMPRESA** reserva-se o " +"direito de remover qualquer conteúdo seu deste site a qualquer momento, sem " +"aviso prévio." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "Indenização" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "Direito de propriedade intelectual" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "Introdução" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "Página Jurídica" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "Limitação de responsabilidade" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "Sem garantias" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" +"Além do conteúdo que você possui, sob estes Termos, **NOME DA EMPRESA** e/ou " +"seus licenciadores possuem todos os direitos de propriedade intelectual e " +"materiais contidos neste Site.
\n" +" Você recebe licença limitada apenas " +"para fins de visualização do material contido neste Site." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "Restrições" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "Divisibilidade" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" +"ESTA É UMA PÁGINA DE EXEMPLO!
Por favor, edite esta página para que " +"seja válida para seu caso de uso." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" +"A **NOME DA EMPRESA** tem permissão para ceder, transferir e subcontratar " +"seus direitos e/ou obrigações sob estes Termos sem qualquer notificação. No " +"entanto, você não tem permissão para ceder, transferir ou subcontratar " +"qualquer um dos seus direitos e/ou obrigações sob estes Termos." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" +"Estes Termos serão regidos e interpretados de acordo com as leis do Estado " +"de **PAÍS**, e você se submete à jurisdição não exclusiva dos tribunais " +"estaduais e federais localizados em **PAÍS** para a resolução de qualquer " +"disputas." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" +"Estes Termos e Condições Padrão do Site escritos nesta página da Web " +"gerenciarão o uso do nosso site, **NOME DO SITE** acessível em **URL DO " +"SITE**.
\n" +" Estes Termos serão aplicados " +"integralmente e afetarão o uso deste Site. Ao utilizar este site, você " +"concorda em aceitar todos os termos e condições aqui escritos. Você não deve " +"usar este Site se discordar de algum destes Termos e Condições Padrão do " +"Site.
\n" +" Menores ou pessoas com menos de 18 " +"anos não estão autorizadas a utilizar este Site." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" +"Este Site é fornecido “como está”, com todas as falhas, e **NOME DA EMPRESA**" +" não expressa nenhuma representação ou garantia de qualquer tipo relacionada " +"a este Site ou aos materiais contidos neste Site. Além disso, nada contido " +"neste Site deverá ser interpretado como aconselhamento." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "Variação de Termos" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "Você está especificamente restrito a todos os itens a seguir:" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" +"Você indeniza em toda a extensão **NOME DA EMPRESA** de e contra quaisquer e/" +"ou todas as responsabilidades, custos, demandas, causas de ação, danos e " +"despesas decorrentes de qualquer forma relacionadas à sua violação de " +"qualquer uma das disposições destes Termos. ." + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "Seu conteúdo" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" +"envolver-se em qualquer mineração de dados, coleta de dados, extração de " +"dados ou qualquer outra atividade semelhante em relação a este Site;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "apresentar e/ou exibir publicamente qualquer material do Site;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "publicar qualquer material do Site em qualquer outra mídia;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" +"vender, sublicenciar e/ou de outra forma comercializar qualquer material do " +"Site;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" +"usar este Site de forma contrária às leis e regulamentos aplicáveis, ou de " +"qualquer forma que possa causar danos ao Site, ou a qualquer pessoa ou " +"entidade empresarial;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" +"usar este Site de qualquer forma que afete o acesso do usuário a este Site;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" +"usar este Site de qualquer forma que seja ou possa ser prejudicial a este " +"Site;" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "usar este site para se envolver em qualquer publicidade ou marketing." + +#, fuzzy +#~ msgid "Cookies Policy" +#~ msgstr "Cookies" + +#~ msgid "(\"us\", \"we\", or \"our\") operates" +#~ msgstr "(\"nós\", \"nós\" ou \"nosso\") opera" + +#~ msgid "(\"us\", \"we\", or \"our\")." +#~ msgstr "(\"nós\", \"nós\" ou \"nosso\")." + +#~ msgid "" +#~ "(the \"Site\"). This page informs you of our policies regarding the\n" +#~ " collection, use and " +#~ "disclosure\n" +#~ " of Personal Information " +#~ "we receive from users of the Site." +#~ msgstr "" +#~ "(o site\"). Esta página informa sobre nossas políticas em relação ao\n" +#~ " coleta, uso e " +#~ "divulgação\n" +#~ " das informações pessoais " +#~ "que recebemos dos usuários do site." + +#~ msgid "" +#~ ",\n" +#~ " without regard to its " +#~ "conflict of law provisions." +#~ msgstr "" +#~ ",\n" +#~ " sem levar em conta suas " +#~ "disposições sobre conflitos de leis." + +#~ msgid ", and the" +#~ msgstr ", e as" + +#~ msgid ", the" +#~ msgstr ", a" + +#~ msgid "" +#~ "All provisions of the Terms which by their nature should survive\n" +#~ " termination shall " +#~ "survive\n" +#~ " termination, including, " +#~ "without limitation, ownership provisions,\n" +#~ " warranty disclaimers, " +#~ "indemnity\n" +#~ " and limitations of " +#~ "liability." +#~ msgstr "" +#~ "Todas as disposições dos Termos que, por sua natureza, devem sobreviver\n" +#~ " rescisão deve " +#~ "sobreviver\n" +#~ " rescisão, incluindo, sem " +#~ "limitação, disposições de propriedade,\n" +#~ " isenções de garantia, " +#~ "indenização\n" +#~ " e limitações de " +#~ "responsabilidade." + +#~ msgid "" +#~ "By accessing or using the Service you agree to be bound by these Terms.\n" +#~ " If you disagree with\n" +#~ " any part of the terms " +#~ "then you may not access the Service." +#~ msgstr "" +#~ "Ao acessar ou usar o Serviço, você concorda em ficar vinculado a estes " +#~ "Termos.\n" +#~ " Se você não concorda " +#~ "com\n" +#~ " qualquer parte dos " +#~ "termos, você poderá não acessar o Serviço." + +#~ msgid "Changes" +#~ msgstr "Mudanças" + +#~ msgid "Changes To This Privacy Policy" +#~ msgstr "Alterações nesta política de privacidade" + +#~ msgid "Contact Us" +#~ msgstr "Contate-nos" + +#~ msgid "" +#~ "Cookies are files with small amount of data, which may include an\n" +#~ " anonymous unique " +#~ "identifier.\n" +#~ " Cookies are sent to your " +#~ "browser from a web site and stored on your\n" +#~ " computer's hard drive." +#~ msgstr "" +#~ "Cookies são arquivos com pequena quantidade de dados, que podem incluir " +#~ "uma\n" +#~ " identificador exclusivo " +#~ "anônimo.\n" +#~ " Os cookies são enviados " +#~ "para o seu navegador a partir de um site e armazenados no seu\n" +#~ " disco rígido do " +#~ "computador." + +#~ msgid "Email address:" +#~ msgstr "Endereço de E-mail:" + +#~ msgid "Governing Law" +#~ msgstr "Lei Governamental" + +#~ msgid "I accept the" +#~ msgstr "Eu aceito o" + +#~ msgid "If you have any questions about these Terms, please contact us." +#~ msgstr "" +#~ "Se você tiver alguma dúvida sobre estes Termos, entre em contato conosco." + +#~ msgid "Information Collection And Use" +#~ msgstr "Coleta e uso de informações" + +#~ msgid "" +#~ "Like many site operators, we collect information that your browser sends\n" +#~ " whenever you visit our\n" +#~ " Site (\"Log Data\"). This " +#~ "Log Data may include information such as your\n" +#~ " computer's Internet\n" +#~ " Protocol (\"IP\") " +#~ "address, browser type, browser version, the pages of our\n" +#~ " Site that you visit, the\n" +#~ " time and date of your " +#~ "visit, the time spent on those pages and other\n" +#~ " statistics." +#~ msgstr "" +#~ "Como muitos operadores de sites, coletamos informações que seu navegador " +#~ "envia\n" +#~ " sempre que você visitar " +#~ "nosso\n" +#~ " Site (\"Dados do Log\"). " +#~ "Esses dados de log podem incluir informações como sua\n" +#~ " Internet do computador\n" +#~ " Endereço de protocolo " +#~ "(\"IP\"), tipo de navegador, versão do navegador, as páginas de nossa\n" +#~ " Site que você visita, o\n" +#~ " hora e data da sua " +#~ "visita, o tempo gasto nessas páginas e em outros\n" +#~ " Estatísticas." + +#~ msgid "" +#~ "Like many sites, we use \"cookies\" to collect information. You can\n" +#~ " instruct your browser to " +#~ "refuse\n" +#~ " all cookies or to " +#~ "indicate when a cookie is being sent. However, if you\n" +#~ " do not accept cookies, " +#~ "you\n" +#~ " may not be able to use " +#~ "some portions of our Site." +#~ msgstr "" +#~ "Como muitos sites, usamos \"cookies\" para coletar informações. Você " +#~ "pode\n" +#~ " instrua seu navegador a " +#~ "recusar\n" +#~ " todos os cookies ou para " +#~ "indicar quando um cookie está sendo enviado. No entanto, se você\n" +#~ " não aceita cookies, " +#~ "você\n" +#~ " talvez não seja possível " +#~ "usar algumas partes do nosso site." + +#~ msgid "Links To Other Web Sites" +#~ msgstr "Links para Outros Websites" + +#~ msgid "Log Data" +#~ msgstr "Log de Dados" + +#~ msgid "" +#~ "Our Service may contain links to third­party web sites or services that\n" +#~ " are not owned or " +#~ "controlled\n" +#~ " by ​us. We has no control " +#~ "over, and assumes no responsibility for, the\n" +#~ " content, privacy " +#~ "policies, or practices of any third party web sites or\n" +#~ " services. You further\n" +#~ " acknowledge and agree " +#~ "that ​we shall not be responsible or liable,\n" +#~ " directly or indirectly, " +#~ "for any damage or loss caused or alleged to be\n" +#~ " caused by or in " +#~ "connection\n" +#~ " with use of or reliance " +#~ "on any such content, goods or services available\n" +#~ " on or through any such\n" +#~ " web sites or services." +#~ msgstr "" +#~ "Nosso Serviço pode conter links para sites de terceiros ou serviços que\n" +#~ " não pertencem ou são " +#~ "controlados\n" +#~ " por nós. Não temos " +#~ "controle e não assumimos nenhuma responsabilidade pelo\n" +#~ " conteúdo, políticas de " +#~ "privacidade ou práticas de sites de terceiros ou\n" +#~ " Serviços. Você ainda\n" +#~ " pode reconhecer e " +#~ "concordar que não devemos ser responsabilizados,\n" +#~ " direta ou indiretamente, " +#~ "por qualquer dano ou perda causada ou supostamente\n" +#~ " causada por ou em " +#~ "conexão\n" +#~ " com o uso ou confiança em " +#~ "qualquer conteúdo, bens ou serviços disponíveis\n" +#~ " ou através de qualquer\n" +#~ " sites ou serviços." + +#~ msgid "" +#~ "Our failure to enforce any right or provision of these Terms will not be\n" +#~ " considered a waiver of\n" +#~ " those rights. If any " +#~ "provision of these Terms is held to be invalid or\n" +#~ " unenforceable by a court, " +#~ "the\n" +#~ " remaining provisions of " +#~ "these Terms will remain in effect. These Terms\n" +#~ " constitute the entire\n" +#~ " agreement between us " +#~ "regarding our Service, and supersede and replace\n" +#~ " any prior agreements\n" +#~ " we might have between us " +#~ "regarding the Service." +#~ msgstr "" +#~ "Nossa falha em fazer cumprir qualquer direito ou disposição destes Termos " +#~ "não será\n" +#~ " considerado uma renúncia " +#~ "de\n" +#~ " esses direitos. Se " +#~ "qualquer disposição destes Termos for considerada inválida ou\n" +#~ " inexequível por um " +#~ "tribunal, a\n" +#~ " as demais disposições " +#~ "destes Termos permanecerão em vigor. Estes Termos\n" +#~ " constituem o todo\n" +#~ " acordo entre nós em " +#~ "relação ao nosso Serviço e substitua e substitua\n" +#~ " quaisquer acordos " +#~ "anteriores\n" +#~ " podemos ter entre nós em " +#~ "relação ao serviço." + +#~ msgid "Phone number:" +#~ msgstr "Número de Telefone:" + +#~ msgid "" +#~ "Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully\n" +#~ " before using the" +#~ msgstr "" +#~ "Leia estes Termos de uso (\"Termos\", \"Termos de uso\") com atenção\n" +#~ " antes de usar o" + +#~ msgid "Privacy Policy" +#~ msgstr "Política de Privacidade" + +#~ msgid "Security" +#~ msgstr "Segurança" + +#~ msgid "Terms of Use (\"Terms\")" +#~ msgstr "Termos of Uso (\"Terms\")" + +#~ msgid "Terms of use" +#~ msgstr "Termos de uso" + +#~ msgid "The owner of this website is" +#~ msgstr "O proprietário deste site é" + +#~ msgid "" +#~ "The security of your Personal Information is important to us, but\n" +#~ " remember that no method " +#~ "of\n" +#~ " transmission over the " +#~ "Internet, or method of electronic storage, is 100%\n" +#~ " secure. While we strive " +#~ "to\n" +#~ " use commercially " +#~ "acceptable means to protect your Personal Information,\n" +#~ " we cannot guarantee\n" +#~ " its absolute security." +#~ msgstr "" +#~ "A segurança de suas informações pessoais é importante para nós, mas\n" +#~ " lembre-se que nenhum " +#~ "método de\n" +#~ " transmissão pela " +#~ "Internet, ou método de armazenamento eletrônico, é 100%\n" +#~ " seguro. Enquanto nos " +#~ "esforçamos para\n" +#~ " use meios comercialmente " +#~ "aceitáveis para proteger suas informações pessoais,\n" +#~ " não podemos garantir\n" +#~ " sua segurança absoluta." + +#~ msgid "" +#~ "These Terms shall be governed and construed in accordance with the laws\n" +#~ " of ​" +#~ msgstr "" +#~ "Estes Termos serão regidos e interpretados de acordo com as leis\n" +#~ " de" + +#~ msgid "VAT number:" +#~ msgstr "Número de IVA:" + +#~ msgid "" +#~ "We may terminate or suspend access to our Service immediately, without\n" +#~ " prior notice or " +#~ "liability,\n" +#~ " for any reason " +#~ "whatsoever, including without limitation if you breach\n" +#~ " the Terms." +#~ msgstr "" +#~ "Podemos encerrar ou suspender o acesso ao nosso Serviço imediatamente, " +#~ "sem\n" +#~ " aviso prévio ou " +#~ "responsabilidade,\n" +#~ " por qualquer motivo, " +#~ "incluindo, sem limitação, se você violar\n" +#~ " os termos." + +#~ msgid "" +#~ "We may update this Privacy Policy from time to time. We will notify\n" +#~ " you of any changes by " +#~ "posting the new Privacy Policy on the Site. You\n" +#~ " are advised to review " +#~ "this\n" +#~ " Privacy Policy " +#~ "periodically for any changes." +#~ msgstr "" +#~ "Podemos atualizar esta Política de Privacidade periodicamente. Vamos " +#~ "notificar\n" +#~ " você de quaisquer " +#~ "alterações, publicando a nova Política de Privacidade no Site. Você\n" +#~ " é aconselhável revisar " +#~ "este\n" +#~ " Política de Privacidade " +#~ "periodicamente para quaisquer alterações." + +#~ msgid "" +#~ "We reserve the right, at our sole discretion, to modify or replace these\n" +#~ " Terms at any time. If a\n" +#~ " revision is material we " +#~ "will try to provide at least ​30 days notice\n" +#~ " prior to any new\n" +#~ " terms taking effect. What " +#~ "constitutes a material change will be\n" +#~ " determined at our sole " +#~ "discretion.\n" +#~ " By continuing to access " +#~ "or use our Service after those revisions become\n" +#~ " effective, you agree to\n" +#~ " be bound by the revised " +#~ "terms. If you do not agree to the new terms,\n" +#~ " please stop using the\n" +#~ " Service." +#~ msgstr "" +#~ "Reservamo-nos o direito, a nosso critério, de modificar ou substituir " +#~ "esses\n" +#~ " Termos a qualquer " +#~ "momento. Se uma\n" +#~ " revisão é material, " +#~ "tentaremos fornecer pelo menos 30 dias de antecedência\n" +#~ " antes de qualquer novo\n" +#~ " termo entrando em vigor. " +#~ "O que constitui uma mudança material será\n" +#~ " determinado a nosso " +#~ "critério.\n" +#~ " Continuando a acessar ou " +#~ "usar nosso Serviço depois que essas revisões se tornarem\n" +#~ " eficazes, você concorda " +#~ "em\n" +#~ " estar vinculado pelos " +#~ "termos revisados. Se você não concorda com os novos termos,\n" +#~ " por favor, pare de usar " +#~ "o\n" +#~ " Serviço." + +#~ msgid "" +#~ "We strongly advise you to read the terms and conditions and privacy\n" +#~ " policies of any third­" +#~ "party\n" +#~ " web sites or services " +#~ "that you visit." +#~ msgstr "" +#~ "É altamente recomendável que você leia os termos e condições e a " +#~ "privacidade\n" +#~ " políticas de terceiros\n" +#~ " sites ou serviços que " +#~ "você visita." + +#~ msgid "" +#~ "We use your Personal Information only for providing and improving the\n" +#~ " Site. By using the Site,\n" +#~ " you agree to the " +#~ "collection and use of information in accordance with\n" +#~ " this policy." +#~ msgstr "" +#~ "Usamos suas informações pessoais apenas para fornecer e melhorar o\n" +#~ " Local. Ao usar o site,\n" +#~ " você concorda com a " +#~ "coleta e o uso de informações de acordo com\n" +#~ " esta política." + +#~ msgid "" +#~ "While using our Site, we may ask you to provide us with certain\n" +#~ " personally identifiable " +#~ "information\n" +#~ " that can be used to " +#~ "contact or identify you. Personally identifiable\n" +#~ " information may include, " +#~ "but is\n" +#~ " not limited to your name " +#~ "(\"Personal Information\")." +#~ msgstr "" +#~ "Ao usar nosso Site, podemos solicitar que você nos forneça certas\n" +#~ " informação pessoalmente " +#~ "identificável\n" +#~ " que pode ser usado para " +#~ "entrar em contato ou identificar você. Identificável pessoalmente\n" +#~ " informações podem " +#~ "incluir, mas é\n" +#~ " não limitado ao seu nome " +#~ "(\"Informações pessoais\")." + +#~ msgid "You can contact us at:" +#~ msgstr "Você pode entrar em contato conosco em:" + +#~ msgid "" +#~ "Your access to and use of the Service is conditioned on your acceptance\n" +#~ " of and compliance with\n" +#~ " these Terms. These Terms " +#~ "apply to all visitors, users and others who\n" +#~ " access or use the Service." +#~ msgstr "" +#~ "Seu acesso e uso do Serviço estão condicionados à sua aceitação\n" +#~ " e conformidade com\n" +#~ " estes Termos. Estes " +#~ "Termos se aplicam a todos os visitantes, usuários e outras pessoas que\n" +#~ " acessar ou usar o " +#~ "Serviço." + +#~ msgid "legal advice" +#~ msgstr "aviso legal" + +#~ msgid "of this website." +#~ msgstr "deste site." + +#~ msgid "privacy policy" +#~ msgstr "política de privacidade" + +#~ msgid "terms of use" +#~ msgstr "Termos de uso" + +#~ msgid "website (the \"Service\") operated by ​" +#~ msgstr "Site (o \"Serviço\") operado por" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_PT.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_PT.po new file mode 100644 index 0000000..9762783 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/pt_PT.po @@ -0,0 +1,277 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +#, fuzzy +msgid "Legal Page" +msgstr "aconselhamento jurídico" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid ", and the" +#~ msgstr ", e o" + +#~ msgid ", the" +#~ msgstr ", o" + +#~ msgid "I accept the" +#~ msgstr "Aceitos os" + +#~ msgid "Terms of use" +#~ msgstr "Termos de utilização" + +#~ msgid "of this website." +#~ msgstr "deste website." + +#~ msgid "privacy policy" +#~ msgstr "política de privacidade" + +#~ msgid "terms of use" +#~ msgstr "termos de utilização" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ru.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ru.po new file mode 100644 index 0000000..9a9f72d --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/ru.po @@ -0,0 +1,263 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-27 02:54+0000\n" +"PO-Revision-Date: 2016-05-26 15:27+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-website-9-0/" +"language/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#, fuzzy +#~ msgid "Privacy Policy" +#~ msgstr "политика конфиденциальности" + +#~ msgid "privacy policy" +#~ msgstr "политика конфиденциальности" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/sl.po b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/sl.po new file mode 100644 index 0000000..7eb9d7e --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/sl.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:46+0000\n" +"PO-Revision-Date: 2018-01-27 03:46+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean " +"any audio, video text, images or other material you choose to display on " +"this Website. By displaying Your Content, you grant **COMPANY NAME** a non-" +"exclusive, worldwide irrevocable, sub licensable license to use, reproduce, " +"adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and " +"must not be invading any third-party's rights. **COMPANY NAME** reserves the " +"right to remove any of Your Content from this Website at any time without " +"notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +#, fuzzy +msgid "Legal Page" +msgstr "pravno obvestilo" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or " +"its licensors own all the intellectual property rights and materials " +"contained in this Website.
\n" +" You are granted limited license only " +"for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use " +"case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your " +"rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall " +"manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE " +"URL**.
\n" +" These Terms will be applied fully " +"and affect to your use of this Website. By using this Website, you agreed to " +"accept all terms and conditions written in here. You must not use this " +"Website if you disagree with any of these Website Standard Terms and " +"Conditions.
\n" +" Minors or people below 18 years old " +"are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against " +"any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" + +#~ msgid ", and the" +#~ msgstr ", in" + +#~ msgid ", the" +#~ msgstr ", " + +#~ msgid "Terms of use" +#~ msgstr "Pogoji uporabe" + +#~ msgid "of this website." +#~ msgstr "te spletne strani." + +#~ msgid "privacy policy" +#~ msgstr "pravilih o zasebnosti" + +#~ msgid "terms of use" +#~ msgstr "pogoje uporabe" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/website_legal_page.pot b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/website_legal_page.pot new file mode 100644 index 0000000..373c758 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/i18n/website_legal_page.pot @@ -0,0 +1,233 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"**COMPANY NAME** is permitted to revise these Terms at any time as it sees " +"fit, and by using this Website you are expected to review these Terms on a " +"regular basis." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Table of Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Assignment" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Certain areas of this Website are restricted from being access by you and " +"**COMPANY NAME** may further restrict access by you to any areas of this " +"Website, at any time, in absolute discretion. Any user ID and password you " +"may have for this Website are confidential and you must maintain " +"confidentiality as well." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Governing Law &amp; Jurisdiction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"If any provision of these Terms is found to be invalid under any applicable " +"law, such provisions shall be deleted without affecting the remaining " +"provisions herein." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In no event shall **COMPANY NAME**, nor any of its officers, directors and " +"employees, shall be held liable for anything arising out of or in any way " +"connected with your use of this Website whether such liability is under " +"contract. **COMPANY NAME**, including its officers, directors and employees " +"shall not be held liable for any indirect, consequential or special " +"liability arising out of or in any way related to your use of this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"In these Website Standard Terms and Conditions, “Your Content” shall mean any audio, video text, images or other material you choose to display on this Website. By displaying Your Content, you grant **COMPANY NAME** a non-exclusive, worldwide irrevocable, sub licensable license to use, reproduce, adapt, publish, translate and distribute it in any and all media.
\n" +" Your Content must be your own and must not be invading any third-party's rights. **COMPANY NAME** reserves the right to remove any of Your Content from this Website at any time without notice." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Indemnification" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Intellectual Property Rights" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Introduction" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page_link +msgid "Legal Page" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Limitation of liability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "No warranties" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"Other than the content you own, under these Terms, **COMPANY NAME** and/or its licensors own all the intellectual property rights and materials contained in this Website.
\n" +" You are granted limited license only for purposes of viewing the material contained on this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Restrictions" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Severability" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"THIS IS A SAMPLE PAGE!
Please, edit this page to be valid with your use" +" case." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"The **COMPANY NAME** is allowed to assign, transfer, and subcontract its " +"rights and/or obligations under these Terms without any notification. " +"However, you are not allowed to assign, transfer, or subcontract any of your" +" rights and/or obligations under these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Terms will be governed by and interpreted in accordance with the laws " +"of the State of **COUNTRY**, and you submit to the non-exclusive " +"jurisdiction of the state and federal courts located in **COUNTRY** for the " +"resolution of any disputes." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"These Website Standard Terms and Conditions written on this webpage shall manage your use of our website, **WEBSITE NAME** accessible at **WEBSITE URL**.
\n" +" These Terms will be applied fully and affect to your use of this Website. By using this Website, you agreed to accept all terms and conditions written in here. You must not use this Website if you disagree with any of these Website Standard Terms and Conditions.
\n" +" Minors or people below 18 years old are not allowed to use this Website." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"This Website is provided “as is,” with all faults, and **COMPANY NAME** " +"express no representations or warranties, of any kind related to this " +"Website or the materials contained on this Website. Also, nothing contained " +"on this Website shall be interpreted as advising you." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Variation of Terms" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "You are specifically restricted from all of the following:" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"You hereby indemnify to the fullest extent **COMPANY NAME** from and against" +" any and/or all liabilities, costs, demands, causes of action, damages and " +"expenses arising in any way related to your breach of any of the provisions " +"of these Terms." +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "Your Content" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"engaging in any data mining, data harvesting, data extracting or any other " +"similar activity in relation to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publicly performing and/or showing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "publishing any Website material in any other media;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"selling, sublicensing and/or otherwise commercializing any Website material;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website contrary to applicable laws and regulations, or in any " +"way may cause harm to the Website, or to any person or business entity;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that impacts user access to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "" +"using this Website in any way that is or may be damaging to this Website;" +msgstr "" + +#. module: website_legal_page +#: model_terms:ir.ui.view,arch_db:website_legal_page.legal_page +msgid "using this Website to engage in any advertising or marketing." +msgstr "" diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CONTRIBUTORS.rst b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..2478eb5 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CONTRIBUTORS.rst @@ -0,0 +1,18 @@ +* Antonio Espinosa +* Igor Pastor +* Dave Lasley +* Nicola Malcontenti +* Nicolas JEUDY +* Lorenzo Battistini +* Eduardo Magdalena (C2i Change 2 improve http://www.c2i.es) + +* `Tecnativa `_: + + * Rafael Blasco + * Jairo Llopis + * Alexandre Diaz + * Carlos Roca + +* `Studio73 `_: + + * Miguel Gandia diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CREDITS.rst b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CREDITS.rst new file mode 100644 index 0000000..5f202e1 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/CREDITS.rst @@ -0,0 +1,15 @@ +Templates +~~~~~~~~~ + +Templates are based on legal templates publicy provided by `termsfeed.com `_: + +* `Privacy policy `_ +* `Terms of use `_ + +Icon +~~~~ + +Icon based on ``johnny-automatic-scales-of-justice.svg`` from +`Openclipart `_ + +Thanks to `johnny_automatic `_ diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/DESCRIPTION.rst b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/DESCRIPTION.rst new file mode 100644 index 0000000..e0fa810 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module was written to provide common legal page needed in any website. +This legal page must be edited using the website builder. diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/USAGE.rst b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/USAGE.rst new file mode 100644 index 0000000..b7e09a9 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/readme/USAGE.rst @@ -0,0 +1,29 @@ +Website editor can change easily any text of these pages using website builder. + +This legal page is complementary to the account terms. + +If you install this module with account installed too, the added page will take on a +complementary function to /terms of account, but never replace the function of the page. + + +Disclaimer +~~~~~~~~~~ + +These legal pages are templates. + +**You must edit the templates and adapt them to your particular case** + +The provided agreements are for **informational purposes only** and do not +constitute legal advice. + +Authors, contributors and maintainer are not law firms and are not providing legal advice. +All information (including agreements, forms and documents) available in this +addon are **provided without any warranty**, express or implied, including as to +their legal effect and completeness. The information **should be used as a +guide** and modified to meet your own individual needs and the laws of your +state. Your use of any information or forms is at your own risk. + +Authors, contributors, maintainer and any of its employees, contractors, or +attorneys who participated in development of this addon **expressly disclaim any +warranty**: they are not creating or entering into any Attorney-Client +relationship by providing information to you. diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/icon.png b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8c40e2317b7ea015b8d7c14f59f67bfa08d92f2e GIT binary patch literal 2507 zcmeAS@N?(olHy`uVBq!ia0y~yUM%d3bK+=Lbt-9RqG1*gk2(wCTR4m(L!*w=$%~Uh~+c z%eA%j*H+Dr&FuAdonV_BnBuDB-V~hYTefF<>bx0}YvP^Xo;v(){rc_*)z`m%HqP35 z@7}eJu6Yp=bF0r)Oq}E{a!fYuz$!`ob&MFXrWShep=EdGlo9qGj@yJ_(6Qr%tU}-x4~xdrNzV zkfEf4zoyFWy|;Y5VtUJV$0P{3+oWvSdMP=kwkOR*os&aElA|{_B0XOq-rQ{Zq+P2P zoKA0Cm=F;rZD5*_u;kPw{GjL6D`@r#U+j1$DTgEd#k@N z#=oL5du3+E`bTH>3MgqA>qIy?W=%_4SXjEPt*tdWq1Dr~?A`lsmU>Nlckga3++r`U z(4V(@PQ(mDwL-s;vTfV8Yb$1SOg&>^9NS#A)mY!}^{Y=|VPSKo@7GZasSi={b%$DclZIyEKr@uP>u#l;K!Cn-pH^!0Z?e)6Pu*7CxlIZ{NN?as0&Hd-wkT|M%hJhnFv3{`&Rn`t|D%A3l8k;>FFIH?Lm3`ug?j^XJcB zx^(H;vuF43-Fy1aA`fFnP!oq zal0UJjqQGoOn}Oo-@ePvxt4l*mX>nfQhsvnYVhA)`DH#o z93FkWapT5pzgMqcuRoD z+Q?#jx_qp9s(U0r#vpwU|1eYp#}%$~vv z*0*j8KU})HqdlqGz5Kg!_U?O$uh;0FbG>}vh~o}KmRy{c39H(r0QI87(A>6TjN9pC=q^CB#j3VY@TL}-M6 zdv`Y|`bF)EMUSF8ySiTc{rhFG+hOI09Y^|ws_X7;ef^EE^UIen?^Q2d&fk4w>+|xZ zPJx=S^SD_B7ft8pSn6ycmbjnwR$$-NyWjlwUQL|(iTAf(g@j_ux%W|7)u*y=XI1Z* zcRIp3_t5gEPqVJPwR$;Iz*hfAoW`oc)d|~5l^WyTl-yu_d16_qq^-~;HqpkFv#hVU z77zWv3<7lADSt3|i|T{*RH ztKYFGGk>pFWQA&D6?B_(z|tXTFVC@Sj6pVo;JC%%{K{5X|c zn!#Y!hRToP+Tm-XI{$^~`n~w`>1o3K8}XC9lCR4#GqBCS8!v2G|8SdVw7H(ur}m&k zx1=PuM@jYncNQD--MG)i+j~PYD(aVK=B1566Uz7+a&N~)Z~U|Q>2FbPQ%g%pNy&fz z)}Q-2u|-@zj_2OY601jFTEmqbZr!|@IPnCdSze6Ds*sE`Cr?JcFD`j@=EGI{x7&WN z+g)I_wIsJ7D&)#8?x=#YZztD>x8yP!6$Kqw;c2<&R{AsdhYwGle16{h&|J@@lY{$Z zy<@lM314U`HdXI$Ics60oLRmuzL z#N#@1jnW#^85&JTd_LxiZ0OcXFqkI%g6CrVjZLTKh7_EwdU0%mlgn(ev)vjBf;-am zbC=8cPW=$MFnoTg#ll{ton}o-q&BcIISFSf-DDH?47B(q>CCKPIcb5%K3{v68|ku2 zPcpg;GB_sBG<3)?EYK2eHSA%uV40ZCkgO;%xzWM@=DLZe(iVhVNS0W;`GFg6+7)NU z=NZbkGPwCA+E*+z^f@jaDVkfLE^|TiM#Vj+4`TDuD{Ms!xqO>!)*o71B{Jn^3*(x( zhN}v=%{LWXnDA9?_g~NDd!=(T@={E6Rxjk7#U@q4t82n-(6lgf?%8*49BgSnXFiu} zkys@-?U4tw!W$3&Non&`D)|6;>d|WBe+_Dk^A2kJd8gw~aD}eYTqzM0=&rzUbYp0UjYI>Ap>`_#WIz{N%;eBlYM*wynXPja#ls$6DAZ z*CliaR8;aw>@RrY&nw21dXH1AY2l8U>yD*-ky>6b;nLX&$0sFkzg}>t^>I1BNYiso znZ<<(r}oZUU2w;l?Ok5O|CWLkMLEiB%69{k_qGU6>~s{|E3i-C-|j;n?+Cw}A0wPD o^*!goHS<2s#6`(}>_76K6Q9Lv>&v~5fq{X+)78&qol`;+0E`FQ+yDRo literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/index.html b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/index.html new file mode 100644 index 0000000..4b03928 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/index.html @@ -0,0 +1,489 @@ + + + + + + +Website Legal Page + + + + + + diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg new file mode 100644 index 0000000..a6754d4 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg @@ -0,0 +1,50 @@ + + + + + + + + +image/svg+xmlOpenclipartscales of justice2009-06-26T04:35:18https://openclipart.org/detail/26849/scales-of-justice-by-johnny_automaticjohnny_automaticjusticelawmeasurementscalessilhouetteweight diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/src/css/website_legal_page.scss b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/src/css/website_legal_page.scss new file mode 100644 index 0000000..a80f1bf --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/static/src/css/website_legal_page.scss @@ -0,0 +1,6 @@ +a.legal_anchor { + display: block; + position: relative; + top: -3em; + visibility: hidden; +} diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/__init__.py b/odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/__init__.py new file mode 100644 index 0000000..a717db1 --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_controller diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/test_controller.py b/odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/test_controller.py new file mode 100644 index 0000000..f2b01bc --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/tests/test_controller.py @@ -0,0 +1,12 @@ +# Copyright 2017 LasLabs Inc. +# Copyright 2020 Tecnativa - Alexandre Díaz +# License APL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests.common import HttpCase + + +class TestController(HttpCase): + def test_page(self): + """It should return a 200 for legal page.""" + response = self.url_open("/legal", timeout=20) + self.assertEqual(response.status_code, 200) diff --git a/odoo-bringout-oca-website-website_legal_page/website_legal_page/views/website_legal_main_page.xml b/odoo-bringout-oca-website-website_legal_page/website_legal_page/views/website_legal_main_page.xml new file mode 100644 index 0000000..7f11aaf --- /dev/null +++ b/odoo-bringout-oca-website-website_legal_page/website_legal_page/views/website_legal_main_page.xml @@ -0,0 +1,414 @@ + + + + + + + + + True + /legal + + + diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/README.md b/odoo-bringout-oca-website-website_menu_by_user_status/README.md new file mode 100644 index 0000000..fd2fe7c --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/README.md @@ -0,0 +1,46 @@ +# Website Menu By User Display + +Odoo addon: website_menu_by_user_status + +## Installation + +```bash +pip install odoo-bringout-oca-website-website_menu_by_user_status +``` + +## Dependencies + +This addon depends on: +- website + +## Manifest Information + +- **Name**: Website Menu By User Display +- **Version**: 16.0.1.0.0 +- **Category**: Website +- **License**: AGPL-3 +- **Installable**: True + +## Source + +Based on [OCA/website](https://github.com/OCA/website) branch 16.0, addon `website_menu_by_user_status`. + +## License + +This package maintains the original AGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Reports: doc/REPORTS.md +- Security: doc/SECURITY.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/ARCHITECTURE.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/ARCHITECTURE.md new file mode 100644 index 0000000..93c5941 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Website_menu_by_user_status Module - website_menu_by_user_status + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/CONFIGURATION.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/CONFIGURATION.md new file mode 100644 index 0000000..e112a8b --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for website_menu_by_user_status. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/CONTROLLERS.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/CONTROLLERS.md new file mode 100644 index 0000000..f628e77 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/CONTROLLERS.md @@ -0,0 +1,3 @@ +# Controllers + +This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/DEPENDENCIES.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/DEPENDENCIES.md new file mode 100644 index 0000000..c1545b8 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/DEPENDENCIES.md @@ -0,0 +1,5 @@ +# Dependencies + +This addon depends on: + +- [website](../../odoo-bringout-oca-ocb-website) diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/FAQ.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/FAQ.md new file mode 100644 index 0000000..abb5b32 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon website_menu_by_user_status or install in UI. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/INSTALL.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/INSTALL.md new file mode 100644 index 0000000..89e6f47 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-website-website_menu_by_user_status" +# or +uv pip install odoo-bringout-oca-website-website_menu_by_user_status" +``` diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/MODELS.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/MODELS.md new file mode 100644 index 0000000..c0ebe50 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/MODELS.md @@ -0,0 +1,12 @@ +# Models + +Detected core models and extensions in website_menu_by_user_status. + +```mermaid +classDiagram + class website_menu +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/OVERVIEW.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/OVERVIEW.md new file mode 100644 index 0000000..e016308 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: website_menu_by_user_status. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon website_menu_by_user_status +- License: LGPL-3 diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/REPORTS.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/SECURITY.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/SECURITY.md new file mode 100644 index 0000000..e07da9d --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/SECURITY.md @@ -0,0 +1,8 @@ +# Security + +This module does not define custom security rules or access controls beyond Odoo defaults. + +Default Odoo security applies: +- Base user access through standard groups +- Model access inherited from dependencies +- No custom row-level security rules diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/USAGE.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/USAGE.md new file mode 100644 index 0000000..7d78661 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_menu_by_user_status +``` diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/doc/WIZARDS.md b/odoo-bringout-oca-website-website_menu_by_user_status/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/pyproject.toml b/odoo-bringout-oca-website-website_menu_by_user_status/pyproject.toml new file mode 100644 index 0000000..11f5efa --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/pyproject.toml @@ -0,0 +1,42 @@ +[project] +name = "odoo-bringout-oca-website-website_menu_by_user_status" +version = "16.0.0" +description = "Website Menu By User Display - Allow to manage the display of website.menus" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-website>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/0" +repository = "https://github.com/bringout/0" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["website_menu_by_user_status"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/README.rst b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/README.rst new file mode 100644 index 0000000..2b3ab88 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/README.rst @@ -0,0 +1,98 @@ +============================ +Website Menu By User Display +============================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:d0c646bc47df00289b4b569c0b2db89760e9cb78e73191c05acbca1fcca486c4 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/16.0/website_menu_by_user_status + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-16-0/website-16-0-website_menu_by_user_status + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +The module manages display website menu entries, depending if the user is +logged or not. +The selection of the display status can be chosen logged and/or not. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To use this module, you need to: + +#. Go to Website > Configuration > Settings > Pages. +#. Select the page for which you would like to hide the menu. +#. In the `Related Menu Items` table, check whether the menu item is visible for logged/unlogged users. + +#. remove default filter to edit website menu line + +Known issues / Roadmap +====================== + +* 2 flags will just toggle specific groups automatically [based on https://github.com/OCA/website/tree/11.0/website_menu_permission] + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Savoir-faire Linux + +Contributors +~~~~~~~~~~~~ + +* Bruno Joliveau +* Jordi Riera +* Meyomesse Gilles +* David Dufresne +* Kaushal Prajapati + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/website `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__init__.py b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__init__.py new file mode 100644 index 0000000..69f7bab --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__manifest__.py b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__manifest__.py new file mode 100644 index 0000000..3a10143 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/__manifest__.py @@ -0,0 +1,14 @@ +# Copyright 2013-2017 Savoir-faire Linux () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Website Menu By User Display", + "version": "16.0.1.0.0", + "author": "Savoir-faire Linux,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/website", + "license": "AGPL-3", + "category": "Website", + "summary": "Allow to manage the display of website.menus", + "depends": ["website"], + "data": ["views/website_menu.xml"], + "installable": True, +} diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/bs.po b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/bs.po new file mode 100644 index 0000000..9414984 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/bs.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_menu_by_user_status +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_logged +msgid "" +"If checked, the menu will be displayed when the user is logged and give " +"access." +msgstr "" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "" +"If checked, the menu will be displayed when the user is not logged and give " +"access." +msgstr "" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_logged +msgid "Visible for logged Users" +msgstr "Visible for logged korisnici" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "Visible for public Users" +msgstr "Visible for public korisnici" + +#. module: website_menu_by_user_status +#: model:ir.model,name:website_menu_by_user_status.model_website_menu +msgid "Website Menu" +msgstr "Website Meni" diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/ca.po b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/ca.po new file mode 100644 index 0000000..b50fe5a --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/ca.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_menu_by_user_status +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-02-23 12:45+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_logged +msgid "" +"If checked, the menu will be displayed when the user is logged and give " +"access." +msgstr "" +"Si està marcat, el menú es mostrarà quan l'usuari estigui registrat i hi " +"doni accés." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "" +"If checked, the menu will be displayed when the user is not logged and give " +"access." +msgstr "" +"Si està marcat, el menú es mostrarà quan l'usuari no estigui registrat i hi " +"doni accés." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_logged +msgid "Visible for logged Users" +msgstr "Visible per als usuaris registrats" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "Visible for public Users" +msgstr "Visible per als usuaris públics" + +#. module: website_menu_by_user_status +#: model:ir.model,name:website_menu_by_user_status.model_website_menu +msgid "Website Menu" +msgstr "Menú del lloc web" diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es.po b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es.po new file mode 100644 index 0000000..fda9d42 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_menu_by_user_status +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-02-23 12:45+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_logged +msgid "" +"If checked, the menu will be displayed when the user is logged and give " +"access." +msgstr "" +"Si se marca, el menú se mostrará cuando el usuario inicie sesión y dé acceso." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "" +"If checked, the menu will be displayed when the user is not logged and give " +"access." +msgstr "" +"Si se marca, el menú se mostrará cuando el usuario no esté registrado y no " +"le dé acceso." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_logged +msgid "Visible for logged Users" +msgstr "Visible para usuarios registrados" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "Visible for public Users" +msgstr "Visible para usuarios públicos" + +#. module: website_menu_by_user_status +#: model:ir.model,name:website_menu_by_user_status.model_website_menu +msgid "Website Menu" +msgstr "Menú del sitio web" diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es_AR.po b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es_AR.po new file mode 100644 index 0000000..4ad5eb9 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/es_AR.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_menu_by_user_status +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2022-09-05 07:07+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: none\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_logged +msgid "" +"If checked, the menu will be displayed when the user is logged and give " +"access." +msgstr "" +"Si está marcado, el menú se mostrará cuando el usuario inicie sesión y dé " +"acceso." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "" +"If checked, the menu will be displayed when the user is not logged and give " +"access." +msgstr "" +"Si está marcado, el menú se mostrará cuando el usuario no haya iniciado " +"sesión y le dé acceso." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_logged +msgid "Visible for logged Users" +msgstr "Visible para usuarios logeados" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "Visible for public Users" +msgstr "Visible para Usuarios públicos" + +#. module: website_menu_by_user_status +#: model:ir.model,name:website_menu_by_user_status.model_website_menu +msgid "Website Menu" +msgstr "Menú del Sitio Web" + +#~ msgid "Display Name" +#~ msgstr "Nombre Mostrado" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Última Modificación el" diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/it.po b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/it.po new file mode 100644 index 0000000..cf2ec8a --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/it.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_menu_by_user_status +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2022-12-27 17:45+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_logged +msgid "" +"If checked, the menu will be displayed when the user is logged and give " +"access." +msgstr "" +"Se selezionato, il menu verrà visualizzato quando l'utente è registrato e " +"concede l'accesso." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "" +"If checked, the menu will be displayed when the user is not logged and give " +"access." +msgstr "" +"Se selezionato, il menu verrà visualizzato quando l'utente non è registrato " +"e concede l'accesso." + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_logged +msgid "Visible for logged Users" +msgstr "Visibile per gli utenti registrati" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "Visible for public Users" +msgstr "Visibile agli utenti pubblici" + +#. module: website_menu_by_user_status +#: model:ir.model,name:website_menu_by_user_status.model_website_menu +msgid "Website Menu" +msgstr "Menu sito web" + +#~ msgid "Display Name" +#~ msgstr "Nome visualizzato" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima modifica il" diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/website_menu_by_user_status.pot b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/website_menu_by_user_status.pot new file mode 100644 index 0000000..49b823e --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/i18n/website_menu_by_user_status.pot @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_menu_by_user_status +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_logged +msgid "" +"If checked, the menu will be displayed when the user is logged and give " +"access." +msgstr "" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,help:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "" +"If checked, the menu will be displayed when the user is not logged and give " +"access." +msgstr "" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_logged +msgid "Visible for logged Users" +msgstr "" + +#. module: website_menu_by_user_status +#: model:ir.model.fields,field_description:website_menu_by_user_status.field_website_menu__user_not_logged +msgid "Visible for public Users" +msgstr "" + +#. module: website_menu_by_user_status +#: model:ir.model,name:website_menu_by_user_status.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/__init__.py b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/__init__.py new file mode 100644 index 0000000..28a1362 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import website_menu diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/website_menu.py b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/website_menu.py new file mode 100644 index 0000000..05a9a8f --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/models/website_menu.py @@ -0,0 +1,41 @@ +# Copyright 2013-2017 Savoir-faire Linux () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class WebsiteMenu(models.Model): + """Improve website.menu with adding booleans that drive + if the menu is displayed when the user is logger or not. + """ + + _inherit = "website.menu" + + user_logged = fields.Boolean( + string="Visible for logged Users", + default=True, + help="If checked, " + "the menu will be displayed when the user is logged " + "and give access.", + ) + + user_not_logged = fields.Boolean( + string="Visible for public Users", + default=True, + help="If checked, " + "the menu will be displayed when the user is not logged " + "and give access.", + ) + + def _compute_visible(self): + # pylint: disable=missing-return + """Display the menu item whether the user is logged or not.""" + super()._compute_visible() + for menu in self: + if not menu.is_visible: + continue + + if self.env.user == self.env.ref("base.public_user"): + menu.is_visible = menu.user_not_logged + else: + menu.is_visible = menu.user_logged diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/CONTRIBUTORS.rst b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..87066bf --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/CONTRIBUTORS.rst @@ -0,0 +1,5 @@ +* Bruno Joliveau +* Jordi Riera +* Meyomesse Gilles +* David Dufresne +* Kaushal Prajapati diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/DESCRIPTION.rst b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/DESCRIPTION.rst new file mode 100644 index 0000000..ac13753 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +The module manages display website menu entries, depending if the user is +logged or not. +The selection of the display status can be chosen logged and/or not. diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/ROADMAP.rst b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/ROADMAP.rst new file mode 100644 index 0000000..43b36e8 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/ROADMAP.rst @@ -0,0 +1 @@ +* 2 flags will just toggle specific groups automatically [based on https://github.com/OCA/website/tree/11.0/website_menu_permission] diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/USAGE.rst b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/USAGE.rst new file mode 100644 index 0000000..f68329a --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/readme/USAGE.rst @@ -0,0 +1,7 @@ +To use this module, you need to: + +#. Go to Website > Configuration > Settings > Pages. +#. Select the page for which you would like to hide the menu. +#. In the `Related Menu Items` table, check whether the menu item is visible for logged/unlogged users. + +#. remove default filter to edit website menu line diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/static/description/icon.png b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d7b9f4f25bd009970ad1f6bb2823c1b8593ad2bd GIT binary patch literal 7439 zcmeAS@N?(olHy`uVBq!ia0y~yU*n2KEw9Usv|KTr6T*THJR(%w}Ma>GyPT z45_$vwI*{y%<i-=cZiuvo1z!{Lbt7&;vw3lbo9ld49O*Y_f#0<7(5d;e&1`nxmf=FyLUAe zM-nz1c%!hLS#m;3)Nrso`g`R>%6J9nD-?IgJV-t4fL#QXWd zdxn}QlS9#m!gWmgZCs>Zv)})HPrv3N_rCY_KTpT+`~UCv?YG~eRUUu(^y$u>JG$HN zD0L<6Sf!i8p%@b#ZR{(|&|t`S(|V42Y+aeHx?N#+{y|&Is_(Jo)3SM;I9etIS(%u8 zIicKNF>kx5L2}bg@!RFgJq(`86etLBD151D6HJ)&QcrfHbT%_H^Y*)C(hLf-&&t_U zY>3cFGn$#THA|xHu|?lw6`{@#%1f_&wz+JQd%G<5y2)9mg%|GMe{XT_)~zVB*`Xq- z$;rxd{bn!QnSb9da+>l)kDW1nZj1N5PwsII{9=<|S^4wp_4wy=gq@t$y$h0PZAt36 z*|%F+lSwSVJ|ZHf=255myxMO!7rXb{eLiC>@i^Cfjxo;*Q_H6gac5^gInYq{dq!b` z!|uX}aD(Sl+IB~3O-nAl4Vy0)ockWj*w^ieTd%LH`}c*r{ioXh7Zy4%4SMe{n(a^ro=z@csY3uGiPszrC&Y%ZrP>y}V8*7Wdoz z`f}NSd(_(e`ro&g2EDwn(D}UG@0`syYu;=;E+!^+>S@v9iyLxpfBzf6xLp%Q>QY9&WP$bOE0qrHI(=I;{78Uk;e|AjRUb^0GiQnA z6{ra9{CG^-_WbFmMJ*F@%yyT*k30AC$B!Kf9ET4dp0%uUp1GBkRR3|?^SeKvvz9$> z$n$t!^}EjFkEdL+t^VfY>ucFpeBSoE$D|g4Uq{sK5@$U-a)iZ+!^y(RDr#j&*48Mk zsh@1tXO}pwQ?qrG)b-n&6`AwvO0oK~b@|)wP1)kM*wEVg_Urj`7`qjUqvk$MF4lhG z%lW)v{ zdJ8xn`%!l7PfX|;M)rpJVWH{SnH>i*oiD`Ryq!BoBH6n9-Jcik_Er`a7FJfX&Za&7 zxMPvVLW%hc3--p%Bb;1I)ybu;&s+}%01Bfs#=ytH zJ?|;+SeKNCT{h`4Z0RtRx_9$+YZ>R))v~eISQ!MIES^ufq{nP@ENX3-0LyJw)+OKD zpQS%PQxP+@#cQdWSJDgP1dfdgEc4d8^EjIeG`+X+IA?imN0hGl>}ji3Zc=&S#-jY= z(naMisfj6?Nf`_bw>SM!u=w_B_0=fR{%%t=FrLC{f=2Y=n1-C9($kpjDGlQAwfm9 zzQ;)|+mnwPH)t+BtZXgdv{-pDgX00o=M4gzHU_?U|NeD})w<`(Ef(w_WRG(zeyQDW zZ+>C=*>)EGnPvC4UN4<#HeH@${hS#yDn1?+_xJUWXDQgx-7-N}N`Lxkqhlqp=GzP< z_D|Ze{`z^|=exU>No&Q(eAu~7{YrG~+pE%9dy|_LiniT*&d9qy_#n3c*t`1k-1!q@xQihYyQUnT+Wo`ET;~G!Q)1?EcV}gafXQ= z@1s~))1DS>)#6;F(z!?@ zK`Eg{&vlP}`NBEHJPAHssgED0?mi{B=GN2gDhhk|O*(%-clV;%PyH4i)<|V)>*^>y zw8(8q&}vcd**j~>Hb+cRxsz$SVS$NM>FsYUF2S`sU6ktL>Z?~vSN&vqV_d(@(E9d_ zRtBSUY(0&unJr>`eOfx_Y<&J@6Z0`f0T)h*v?n!ov1(Vk?h3qlrB!gQGN!NoZEgJR zSGvV*3RS0d{x0h}%)n6Q)*IU*?VPL0acJpp{_ttJwy)h4tjzxwsWu#5bKUx});`zb zf}`7&KlJsVcB)?26I1bQk|J~E-uHdC_y4TlFMZW6Z)fA> zOct4}MIWsH|GFH%`+xraA3y8AUp`)!wd~SMmo0bm`g`Bbm^JIxxxJ3j--Jt?|DQg` zxF`1T_rF`WZVm6>zp?)PyyWBkf4`*fxA}Ex^~(||r7s`K)b1GB6@Zz82W++tf$xBVGQJ#PmO)^z z1MAwmjneCU)_(hOiR0!{p`7d1VTWIrl!O`wN3INebk;~_R!fw~0fW1R%l^4(vdZk3 z=iG5XLYPJIN^kh|jjEn+yqC*cf7yKL*)o+T*~N=5b7x;-viOwNsBi zI_9X(J{&$Ti7zLCGSwBX6Lti35xA2&>M<#^flAb;YO zImJpGCqt}edX=lItEnCM={0lur}*^18=2+|-%mYVrOEJaC&$My%NHVMr?s;;<-PcM zHz{w=-MqgqUj8rH@u74zt95I_UkmGhx8(m^+yATicirc1-PLX~mQuZ~2PZ3V>|L@i z$*%qR)T^r}Fg##z5~&Dz&?tW3=-FohK_`!>9(#Ez&2sz3Wx8knOn+a$QS;B9SZ5hS z&DP^({LK6A#1+c@ITvrX`s@Aw)8m;=L`O!Rd(JMAJn#9}qy(}OwVr0-oClww(jwAjn^i#C)aE9 z#KrN9DKG6(V8G?u#YwvZPq-#3d6vDqoF2CC=hpT0GAz9*r*y)*5;tn;q?exkI`wC+ zU9zuw$BBpo0b&!>5*rm57tc^r;1FdrWOx-;pz77VYu?*k>qVkDJ5zWy84f)v|9|~^ zyRy%xtyibcoIdaOm$&sl#81~BZJZ&Q(5-H@y0pGRW0Sh@(@-@bMbXe_a{uL%um6op z`f+R8Q#w8=&M`EY5)dM|n{g^@Ozv-v#x06s(Q!VC>(^}2`+K~~ zNUrB~pz%bnD>i1+0xxs&?#QdmYCPV2NMV8Zzh9ruLY33B+yh_EL{|_??*&cr+AlW9!!g$Q$O3Gf-i{5_H4NCtz~%&osTUrS(^4eugZ?Q zDQxxJv)|gk>1?^W_utK>2ih1yZvXqd*|bL?HF2YO0#CQ^_2n{-1ur*kT6&J*%fXHH zAKT~8to?ZMz}Goh>XUp@g&t45xY6$L%z2f`$={wF`JpEg5>R%iZAHbaip6*OzVY+- z`l=Z#OLuqgTqx^R(!nUnD3aszGOB8$V{l>e=8zusNr{fjXFuBO;;W{xgk!~}G7-l4 z@tJ}mfqGXTzTA5FK#{GC#l?Rczt_Fm>k!tc!noTxmwijrwi_LFf7+(k{n-2I(wvC+ z+P5>6a}BF6@BRMtSZBhLc*{?x>}`KtDZSpaY3J0=H+&OMIIeC}VGWCa^V~u9hi`+& z;<$^YlTQ>yNOHOE+J0|;Y|Wz6Ki1n@R&Ev2Ot+MK8+QENmC&t<4XPai0;+ztizMc~ zpML#%Pej`H-*yr6t->Z)7<~JC>}~nXlbkCgcs4Q1dp!2}b};|XVfFmkI%oaTzrX0{ zSaa{gnzKKHkDojgQuMz4vhw8I)w~J7XKij~Wnvk)-bAC>Sp8X{PVJLU zd2#Xd`{noNcdUA{ON=2#Wa);w`?)f^qbyHx$Mjbnji0)JLnd~Kr|kFTUmF)*Id`$9 zK1f#5SI_!fd41WI%NhM|f6s%PXaAPp z-Myfv_Wj4{aaFG@4>UDwn%Z^QX=2#&%~sWqwz~g2wQ9X)*RdJ5bFLn~vHJGKTdAkx zgbr>#zSH=59D~3<7Hb}c6qAmp)1_or%%0R|`iSkUQtr+Lk(;A!PDR%Hboah-a_IW) zbN%=HUpLR^N9b!Z|LwQ`6T$nTR(^-4_w&@#J3lj<*M2?0eY!PGY31u>T)i_EXf$kI z;up2!+YkSLzYh5Bw>2nYZrT#J-c{*Yru4yGcio@oK75zwu%YD8&!f!-Z_1y@Ft8nJ zl5n1m0gKHa9FWEAQLd(UpYxl#K4hu_u^t#4nymcI>%SjK&OzN%-7 zK-4r@e>IEeK9VdmZH_oSxXI|w(v-HmSzMm-(6{oHKXrkZkg*`j{)F+<2=5;h<*ZIw}js_`C zefc`VZ)wzBzqj+RF5kK%&LGLq`MPs$=8@!;Cu@)YzdwD--}mw#WOQ@{0yB25yIMHo z#GSbrwkz_^++J^cKS05ErTXP%O0Fd>2}h;`X@(xrF+a3;<&U;Yg^E5&LQ^VUZVg+e z&y>t?%D`dEFM@3SUxa5smXyp$q* zW}icU+hW063vTZ2nI&Fv_=@}VB{uk3L2Z)8KNr&qeszW4fidcAKYni+~1 z43EwHb0BSHM1XtQpU>ytW#tGdXH{Qax>Nb}Wp%!o$@8sEr{6bCN&BpQP1B_z#dDgT z+a$LbMYV;x%X?+kzWm+up&@CtmqzKY&*pU>`p)iDz0`%r(d{Re${S@=lD@(LO6gI7yk;cRA_5VrUww+Gtano|M^ER6p zu33GuLe5HVnQD64t#}8numvYVE~U)fl9r`(Npx#suw++X^8yv6`?vOf4wm2hx}S5R zCikIpu`LsxSFhh+cWL9=8aw&!V=1m;u7V5_-yX+>Ex+9Qo9EoSpGh$SEWVeGW_~$z zXwtgORm<8q>x`vJ|N5S@^h?`$`O4loyUf;dc<;+sWm~j<^VaF+(^mN@O9jtN)zO(Q z_;9M9!JX-6R2SQQp55EmbTnyY?fcyN^1G(ntM{=h@(WL5Xh_>!`sPPrXyCD9Zl=D| zRX%=EoV7ZBpW^c@rpRfFFJ|aHpEqOHt^N7)6((HReL8h>{+@5Yj=YmqG0&S@aZqio zc}3>_6*}(bG67q{vtO@X_nxhc-Nbx_@Qyjcg5_FIcP;Z2U=)4xvw!|yF@_6;bMwxt zC9jEEd-lv3x3eC4(MiEI(MTznUe! z{qWv;2absG%37zeLgR2)yFRA+yOIeR~KANu;<|9SbcSF*ddJ+N3)n($}w{5`+Vub;o?F87`fF}w^83QJ;E>gekJ z-nYH{y`1lL)j$!~jnbAmo$?`PJ7yR%G(6wgq%b!x@Ig;;j{w7g@3!ZcuTp9+pXzt3czb*SYa^FCO}D7webgotP09 zlK8aYccZ>$kx6H6_r2=d|Mxup<$rAPNrBw$;TgHL$%UDkV!eF4yc(O7^7_RX9GVww z*q2u=C&=O|WXs0Dt+04i+7A-}*Vf`=lBPW;Ql~|oJAT8_Ve{X=*{@#<8Vecr6x?6Wu)0S=s&)V(6f5>8C*K=vVuJ9$&cQ2 z@f*GWed_)H=5_8(2cFxmdAjS~$(6y|uFBot>V4TXP(Z~~h(#!CajtOToMMKO!v~fp zudL8HCDE;}z;IxbjzrU}i<+)drf`pXJteGZqp_pmn`wxw2uhg zzL76?`;m;I2un$2<d2iQ@li6dnPW@5I=jdEYeD^U!Mz-|Mf_M5gqOO70zt-4ox7e@I;S{eXE4533BWPvG${^Rq z+RIO#PyQ$vYnpT0jic3$+37^#U19ZQ8oX@mp977xI+}F$YHrzU`$zmnc~7CzOdH#U zE9ZL9fZz8%<%&NMv%a(Una|w1 z-T(f-J89=RX>s7?&v#a?eEEIP^IPkR`4xGD*G1>ekB^Cph>(z#?K}Q>lL~i}f_BmR zw>uxrdA*b4{A;h0^Y&ljoX<^ueCL_Iswazs_wviza?ksm?|XlbRl$K_?(V03kI$Vu zYcBQm?&HVHGP@ROaJYyZ)pe=(U3HViaYAb3q$O*gKRi4q?1!H~i`(LdyVj*fKCFDI zz_CqcKli~K+d@}{gojPvJ?Zl5CmKtoTNkC42Cckurl;HRm;^UdC3|0aYmF9%)53s` zqe-h)buE(6d*I__t@FHcUV3EM)+k-E?xRT?L$t2G{`xNS@#kenw_A7J*t_66r{sH| z$$1s;yrw;k(7AT~`gFhLmtU5cNL?+p{qp2oitgdwizd1gJra6MeP5SY&3oQ@>qqRz z1?}eZGaWh^%o@o$y$juz`3KNLSZ?#FhH-Pf}k?k(4C+#J34 j{?&l<-f!a;{j0yvJ$+r^)*5jJ1_lOCS3j3^P6 + + + + +Website Menu By User Display + + + +
+

Website Menu By User Display

+ + +

Beta License: AGPL-3 OCA/website Translate me on Weblate Try me on Runboat

+

The module manages display website menu entries, depending if the user is +logged or not. +The selection of the display status can be chosen logged and/or not.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Website > Configuration > Settings > Pages.
  2. +
  3. Select the page for which you would like to hide the menu.
  4. +
  5. In the Related Menu Items table, check whether the menu item is visible for logged/unlogged users.
  6. +
  7. remove default filter to edit website menu line
  8. +
+
+
+

Known issues / Roadmap

+ +
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Savoir-faire Linux
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/website project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/__init__.py b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/__init__.py new file mode 100644 index 0000000..53ac973 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2018 David Dufresne +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_website_menu diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/test_website_menu.py b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/test_website_menu.py new file mode 100644 index 0000000..f768e59 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/tests/test_website_menu.py @@ -0,0 +1,57 @@ +# Copyright 2018 David Dufresne +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests import SavepointCase + + +class TestWebsiteMenu(SavepointCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.page = cls.env.ref("website.contactus_page") + cls.page.is_visible = False + + cls.menu = cls.env.ref("website.menu_contactus") + cls.menu.user_logged = False + cls.menu.user_not_logged = False + + cls.public_user = cls.env.ref("base.public_user") + group_id = cls.env.ref("website.group_website_designer") + cls.public_user.groups_id = (4, group_id.id) + cls.demo_user = cls.env.ref("base.user_demo") + + def test_visible_user_logged_demo(self): + self.page.is_visible = True + self.menu.user_logged = True + self.assertTrue(self.menu.with_user(self.demo_user).is_visible) + + def test_visible_user_logged_public(self): + self.page.is_visible = True + self.menu.user_logged = True + self.assertFalse(self.menu.with_user(self.public_user).is_visible) + + def test_visible_user_not_logged_demo(self): + self.page.is_visible = True + self.user_not_logged = True + self.assertFalse(self.menu.with_user(self.demo_user).is_visible) + + def test_visible_user_not_logged_public(self): + self.page.is_visible = True + self.user_not_logged = True + self.assertFalse(self.menu.with_user(self.public_user).is_visible) + + def test_not_visible_user_logged_demo(self): + self.menu.user_logged = True + self.assertTrue(self.menu.with_user(self.demo_user).is_visible) + + def test_not_visible_user_logged_public(self): + self.menu.user_logged = True + self.assertFalse(self.menu.with_user(self.public_user).is_visible) + + def test_not_visible_user_not_logged_demo(self): + self.user_not_logged = True + self.assertFalse(self.menu.with_user(self.demo_user).is_visible) + + def test_not_visible_user_not_logged_public(self): + self.user_not_logged = True + self.assertFalse(self.menu.with_user(self.public_user).is_visible) diff --git a/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/views/website_menu.xml b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/views/website_menu.xml new file mode 100644 index 0000000..f96bea3 --- /dev/null +++ b/odoo-bringout-oca-website-website_menu_by_user_status/website_menu_by_user_status/views/website_menu.xml @@ -0,0 +1,27 @@ + + + + + Website.menu: Display to user booleans + website.menu + + + + + + + + + + Website.menu: Display to user booleans + website.menu + + + + + + + + + diff --git a/odoo-bringout-oca-website-website_odoo_debranding/README.md b/odoo-bringout-oca-website-website_odoo_debranding/README.md new file mode 100644 index 0000000..f58bfce --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/README.md @@ -0,0 +1,46 @@ +# Remove Odoo Branding from Website + +Odoo addon: website_odoo_debranding + +## Installation + +```bash +pip install odoo-bringout-oca-website-website_odoo_debranding +``` + +## Dependencies + +This addon depends on: +- website + +## Manifest Information + +- **Name**: Remove Odoo Branding from Website +- **Version**: 16.0.1.0.0 +- **Category**: Website +- **License**: LGPL-3 +- **Installable**: True + +## Source + +Based on [OCA/website](https://github.com/OCA/website) branch 16.0, addon `website_odoo_debranding`. + +## License + +This package maintains the original LGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Reports: doc/REPORTS.md +- Security: doc/SECURITY.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/ARCHITECTURE.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/ARCHITECTURE.md new file mode 100644 index 0000000..2e7e5bf --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Website_odoo_debranding Module - website_odoo_debranding + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/CONFIGURATION.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/CONFIGURATION.md new file mode 100644 index 0000000..03bc0fa --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for website_odoo_debranding. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/CONTROLLERS.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/CONTROLLERS.md new file mode 100644 index 0000000..f628e77 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/CONTROLLERS.md @@ -0,0 +1,3 @@ +# Controllers + +This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/DEPENDENCIES.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/DEPENDENCIES.md new file mode 100644 index 0000000..c1545b8 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/DEPENDENCIES.md @@ -0,0 +1,5 @@ +# Dependencies + +This addon depends on: + +- [website](../../odoo-bringout-oca-ocb-website) diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/FAQ.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/FAQ.md new file mode 100644 index 0000000..e0e48a9 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon website_odoo_debranding or install in UI. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/INSTALL.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/INSTALL.md new file mode 100644 index 0000000..69969b0 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-website-website_odoo_debranding" +# or +uv pip install odoo-bringout-oca-website-website_odoo_debranding" +``` diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/MODELS.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/MODELS.md new file mode 100644 index 0000000..8dbfa1c --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/MODELS.md @@ -0,0 +1,11 @@ +# Models + +Detected core models and extensions in website_odoo_debranding. + +```mermaid +classDiagram +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/OVERVIEW.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/OVERVIEW.md new file mode 100644 index 0000000..9a9e485 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: website_odoo_debranding. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon website_odoo_debranding +- License: LGPL-3 diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/REPORTS.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/SECURITY.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/SECURITY.md new file mode 100644 index 0000000..e07da9d --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/SECURITY.md @@ -0,0 +1,8 @@ +# Security + +This module does not define custom security rules or access controls beyond Odoo defaults. + +Default Odoo security applies: +- Base user access through standard groups +- Model access inherited from dependencies +- No custom row-level security rules diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/USAGE.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/USAGE.md new file mode 100644 index 0000000..e68f93f --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_odoo_debranding +``` diff --git a/odoo-bringout-oca-website-website_odoo_debranding/doc/WIZARDS.md b/odoo-bringout-oca-website-website_odoo_debranding/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/pyproject.toml b/odoo-bringout-oca-website-website_odoo_debranding/pyproject.toml new file mode 100644 index 0000000..085287d --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/pyproject.toml @@ -0,0 +1,42 @@ +[project] +name = "odoo-bringout-oca-website-website_odoo_debranding" +version = "16.0.0" +description = "Remove Odoo Branding from Website - Odoo addon" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-website>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/0" +repository = "https://github.com/bringout/0" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["website_odoo_debranding"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/README.rst b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/README.rst new file mode 100644 index 0000000..c54f0d3 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/README.rst @@ -0,0 +1,93 @@ +================================= +Remove Odoo Branding from Website +================================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:3275e93b6507f51f2acc3ec36d2570e42e2358e799e2df634aad5e89fd21d8fc + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/16.0/website_odoo_debranding + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-16-0/website-16-0-website_odoo_debranding + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module remove Odoo branding on website: + +* Remove "Powered by Odoo" from footer + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +By default the option is enabled, so no additional configuration is needed. +You can always control the visibility in `Website > Customize > Brand Promotion > Remove Odoo Promotional Link` + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Tecnativa + +Contributors +~~~~~~~~~~~~ + +* Yigit Budak +* Antonio Espinosa +* Vicent Cubells +* Jairo Llopis +* Karan Shah +* Dhara Solanki + +* `Tecnativa `_: + + * Alexandre Diaz + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/website `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__init__.py b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__init__.py new file mode 100644 index 0000000..4055855 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__init__.py @@ -0,0 +1,3 @@ +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). + +from .hooks import post_init_hook diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__manifest__.py b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__manifest__.py new file mode 100644 index 0000000..af8a72c --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/__manifest__.py @@ -0,0 +1,14 @@ +# Copyright 2016 Tecnativa, S.L. - Vicent Cubells +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). +{ + "name": "Remove Odoo Branding from Website", + "version": "16.0.1.0.0", + "author": "Tecnativa, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/website", + "license": "LGPL-3", + "category": "Website", + "depends": ["website"], + "data": ["templates/disable_odoo.xml"], + "installable": True, + "post_init_hook": "post_init_hook", +} diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/hooks.py b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/hooks.py new file mode 100644 index 0000000..763359b --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/hooks.py @@ -0,0 +1,18 @@ +# Copyright (C) 2020 Alexandre Díaz - Tecnativa S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import SUPERUSER_ID, api +from odoo.tools import config + + +def post_init_hook(cr, registry): + # This is here to not broke the tests. The idea: + # - XML changes in website are made using 'customize_show=True' + # - When Odoo is running in testing mode, we disable our changes + # - When run our test, we enable the changes and test it. (see test file) + # + # For the user it has no impact (only more customizable options in the website) + # For CI/CD avoids problems testing modules that removes/positioning elements + # that other modules uses in their tests. + if config["test_enable"] or config["test_file"]: + env = api.Environment(cr, SUPERUSER_ID, {}) + env.ref("website_odoo_debranding.layout_footer_copyright").active = False diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/es_AR.po b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/es_AR.po new file mode 100644 index 0000000..e69de29 diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/it.po b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/it.po new file mode 100644 index 0000000..7338855 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/it.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/website_odoo_debranding.pot b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/website_odoo_debranding.pot new file mode 100644 index 0000000..78d58d5 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/i18n/website_odoo_debranding.pot @@ -0,0 +1,13 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/CONTRIBUTORS.rst b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..296a658 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/CONTRIBUTORS.rst @@ -0,0 +1,10 @@ +* Yigit Budak +* Antonio Espinosa +* Vicent Cubells +* Jairo Llopis +* Karan Shah +* Dhara Solanki + +* `Tecnativa `_: + + * Alexandre Diaz diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/DESCRIPTION.rst b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/DESCRIPTION.rst new file mode 100644 index 0000000..07d76a8 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module remove Odoo branding on website: + +* Remove "Powered by Odoo" from footer diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/USAGE.rst b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/USAGE.rst new file mode 100644 index 0000000..1f7e843 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/readme/USAGE.rst @@ -0,0 +1,2 @@ +By default the option is enabled, so no additional configuration is needed. +You can always control the visibility in `Website > Customize > Brand Promotion > Remove Odoo Promotional Link` diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/icon.png b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7252e01ea68e84cd59d70f29f7dec9c667b39ac2 GIT binary patch literal 4141 zcmeAS@N?(olHy`uVBq!ia0y~yU~}f%*mW5n?0g!}z`(!D)5S5Q;?~>QwG%|1 z&ON^WuhHGhcRz13-faBl+@W`qYF(!{2%6}0yD4gl9_Eyr6Q!=+&b80w-%hWh@bL0` ztxMi%?c~}yqa&(9u=HT8$)pF11cV-YJFr%khE8*tSejn`JoWkCrOS8E|K0p{-@MZH zr>U(A^Y(@M`}+HTFFBvSfB*F7Gb0zQ*>p;4HC`gyNjHAqou4lj_g|X+=+>8~JbCZ# zv}NAkyZK*#`L^f3#p5mS-2eGl^nb<1_l-N}Jd6#OzFqpebl&RQ&*KhWJwGFTzLMIr z)#^3R zUv5pZ^zoi;&niBfz3sch(`5^vzja7@KHteUwZZja*f03=?)*pI_j~M%mhcqF=>D3Odu)x>uJn^KYxkX<-+22R;}+3_J39K?_I}#@ ze$JnV!FMOt@4xZAG?F2vV(Qzj$kHcMRl~Kv=9(Ja;nU{OU0|=HbYl0@=ilbW{J*m8 z1pldApTLS+nH85qcFYwrTE(l*RCc1Y>}Th6`^f)KRGZitLNX6OUNs=&{fYPg`v1Yl+>c+Uf0EPJJm5Rq?ChuCfBSdGtZPd#s{C`LQ#kwD zy4c&?4BYFVtebJQmhgJN`esw5;r2*^3Jc zYfPk6yA}yJalCy0K79ACUDNIru$Dh97mN1Ww{xEI!}PZ*-xu}&`FZlC%CCD@pG=>?|oQy=z=f{PVaO`~T1Bv7PnS_p|R?tl#?g-tK)r54=%J&w9Tw`0w<& zpLgxr_0F#B%?vXmqa=&<4pH-5*#5cL{XNShRJpV7PwHuzNmdu!nATrAd4Iom%@?P2 zwYL||{Qvjy?^T-)=hx2X+540KO%$HL{mQvrf0wV{|IbSEr`fXIyQ@>Zy-%zgLg zQ(MnpDE^c`*Wvl5&%3_ek9q#%r*C*5{}%ISGu86BCKMldkj=3y#^OWZzuxWl|0x7s zQe1O*^}2O>1#%3FD?ZrpcP(<@a5Ru;Y2EI;p^`DGL4jk+`RCDA`S+kt+=wk8C zZ?X3aa(+D1d9|=FY-Z-CrwmaIUY!=APd5Bb{&_(=zvf%{d>*ZhlUR48o}N}66&3Yw z`L12FCaIicU}IPaahqIIPEXVQzGd4syS3K& zIyMX!Oy2hRr9_G~DM$#|%AMcD$}Q%@@i9Mti*4y&p4_iZ&t&dCNoRC(u~1c<@agf| zgq-`=?z`pP{_K~vBIWmiz~`a|PN!`?kz$k}ajap9^Od@1cB!H<qj|MSZlsVU=5Fpo| z9$8&o9UmSZ&UmDHzv`b)uYFI=dL3=LD|1!H9JNQ66Q%cDuiEf=?fLI^+m*MK7(Mj0 zI&kjXxzMv`&(2=vGc(DeKT#q=N31}G-S_f>Oev>@6Bq;eGeblFuNRjoUGy)?LPoFP zQHGyR!;b^Lhmynnr(dso?A4YxOG|Ou#0&CkUCwR|%egIg<9AMY(#v_xlezPQ7-v27 zoRkt0-L(24|fD;ump-6Z_U^kv5&z}gsU-e22+PzfBMZoKR^H8(;0u?e0yZ| zhqlPDT?g|I2l%*ntaE>ReN)9p^TXBi?@o)__58+@!?R5q=FXkFT1r})_j&Kx!d={@ z8oPuKKP+H$*}G9r`kd7f50y`>>Qy%LQcG&y-(fv#xNF&|Hir-v`@7uh?c3(vUHI33 z|D2eO&kL#+q=*Y!SzCvjnwaEVDxSCV{AES0t|W&m(PG6G+)V)!ghNAFeJ``QY!+6Y z=&?}vrb%e*eUHGI!X9d$3$}JWSRqpOj_>XL8#DL)EpIoTKlM%4nd0-d-@o_v_Rg-c zn}1Q|^roH~yZkL`RxY*k-?_|tzHrql!Fg6Le`W4=T9s@Tc6W0-u<6aqZSK7dizf#h zmCDEwSY*|5z0Q79{o`*ZHr;KX60Ev=&euPm&)Z+Pa^;IlYU)zP{?tenAx;$`&Yqs0 z12&%(T0|U7tONB$!d7o(n6gM?LFTRp6?c~^D=Q~Ruw_RWMUL|wQvzh66xj8vC*Is|U)TAKccad?$Dz4B_!Cp5-&mc#?GtWOKL~c6} zS(Vu7qO>7uEh|W5LFTQ7$#qq0@vGi*tA72g-j;j&TKFc0@bz(j z-)+gf%u;+VIZ|wqhScpx$Q^c_oj(8{%8 zjw}POqku;D(M?Iu&dl8Z>gCJM=`sh_MsGI@2??pW{;)t|GaExd=+%M+?>t-s7i3B$ zZHx%)NYgl~FzaxneVo44tYwOmPaa6yEcyOziPg-;M#j_K`ulc#KFwBf?sTMyFTZA& zQ_)Tt*FcdH@mGpZi*_FPY{PKiX%QpCrI#jbY-|CsvAHz`3?0WGU-&Q3A`lW1B5{DJ zkzv)URXsa5tXk!G-@lFKhy6j^TOT&wV}op>l|ptXm5<**`(9_ys|)sefee1 z*=N}TMGP%0I(*cE3u=@mI+)F7JzlsWLZ`rLZh?i&F~b%CmC2qxJw1D>3>oHKZ+i9N z!-uzvG`@v}g++a-4O@LxLu{f4OWyX|1&emhm6VcdI{)1G(~NoQbN!YV?s=!<#KFeS z{_yip9(5rnf&Sx)r;T*PxIg`@Irw|^sxD@BzM3VOw>&->Dwyuxdtk%}OgnL%!o-dcYcjxVVIxYXR&3p6j zRaP#(mwD7*T@7yMSirETZqGZH)mO8=)K+;PWY6z+yZ1gU__65F>?u1x zJUZHKF6?w|laBVRxrt>-YLgokIF5B0pWbxh`DZt~%ZG3BOnhv?taR8QK4PWe;oJM` z|Fb_VsQ7oZ&0LdVd;a}(cM6ZoRu}KQb64lI(X+BgJ_2VS&hbz=@VSQZh>sd`-(#NR zFCVU1&b?Pl-lk%MzEJ0x{r~^{Uc7^4)|B<8>F4Lgs-8Bwef#!m%ej8H?gY(P{rSTO zgFSKjERGs8`d)H#O`ST`ZDByD=)nYmvfX!AY4{Wn8(r(HN<5ij6cD;~!7VwPiVw|=jg8;h z<*GFLyjO7lOKrOSwrpw8%GO^xi?(f>)^+^xiL}kfPNWzeGx434%EQa+7%0-Qh$B#> z_a^u8LXP&sZoe1#Up>=jcDVY+e+%{>@3fq= z`R1C7GN(87I4Cf<1}b<8sdzTseybN@an*#kYte%f6P4SIX8IgIHB~!ULos#&v$d6# z-RY-At84A%+fF~-xJV;Fq_xC~xBqyvixOl1ac5pWzAT;7L22$Y4_nUkX4L)O1PKmB?5_~O=QO8u#`-*j^gquT7VLhG+fpMP3(p1bKo zp@BqBV&pVK|3Amuij8KPR5{oFZo;z! z*s^u&#+4yjr$6sG^!ZQnCY|{?85uV?7^Kbf<|J>wU0!J;H$ASfa-O+V_Tx4m?k#)w z?v+n7n)xksb(m}5qFE;zbr{a>Nq%~2s_E6MSM3E^5-pDx{`#UT-hFgh$D$kWzg8_@ z9<;KIVZEuD*}k>&wH`?0-g^J48|M_?@M$i2Hyy|zJ z3tCJkGOx9pzy8?s&z@zw?}kQ3-hB13BClZg-T1=YcfXp=KFh7(9eCyK>uYPRU)O)S zy{GbXzYO2;?=pPsXA9>%bn9BQV3pRdU%&X$Hs54jDz)u-P%G!@O=3N7&p+3%i{Ac@|9SDltE$aYW9^LMF3ZA2jfT3nX2!(5nXzc0b8q44oo)J|DlOfu?{Btz zxcO|CaqB0SMDH$(^%?V)sI3$TbS;v#<=fK9#bN3wXLDU?k!WK#x2D{#f8r|_=ziMj TP^8Jgz`)??>gTe~DWM4fd~FNm literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/index.html b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/index.html new file mode 100644 index 0000000..2b0e21e --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/static/description/index.html @@ -0,0 +1,439 @@ + + + + + + +Remove Odoo Branding from Website + + + +
+

Remove Odoo Branding from Website

+ + +

Beta License: LGPL-3 OCA/website Translate me on Weblate Try me on Runboat

+

This module remove Odoo branding on website:

+
    +
  • Remove “Powered by Odoo” from footer
  • +
+

Table of contents

+ +
+

Usage

+

By default the option is enabled, so no additional configuration is needed. +You can always control the visibility in Website > Customize > Brand Promotion > Remove Odoo Promotional Link

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/website project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/templates/disable_odoo.xml b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/templates/disable_odoo.xml new file mode 100644 index 0000000..76cb919 --- /dev/null +++ b/odoo-bringout-oca-website-website_odoo_debranding/website_odoo_debranding/templates/disable_odoo.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/README.md b/odoo-bringout-oca-website-website_recaptcha_v2/README.md new file mode 100644 index 0000000..9655aad --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/README.md @@ -0,0 +1,46 @@ +# Website reCAPTCHA v2 + +Odoo addon: website_recaptcha_v2 + +## Installation + +```bash +pip install odoo-bringout-oca-website-website_recaptcha_v2 +``` + +## Dependencies + +This addon depends on: +- website + +## Manifest Information + +- **Name**: Website reCAPTCHA v2 +- **Version**: 16.0.1.0.0 +- **Category**: Website +- **License**: AGPL-3 +- **Installable**: False + +## Source + +Based on [OCA/website](https://github.com/OCA/website) branch 16.0, addon `website_recaptcha_v2`. + +## License + +This package maintains the original AGPL-3 license from the upstream Odoo project. + +## Documentation + +- Overview: doc/OVERVIEW.md +- Architecture: doc/ARCHITECTURE.md +- Models: doc/MODELS.md +- Controllers: doc/CONTROLLERS.md +- Wizards: doc/WIZARDS.md +- Reports: doc/REPORTS.md +- Security: doc/SECURITY.md +- Install: doc/INSTALL.md +- Usage: doc/USAGE.md +- Configuration: doc/CONFIGURATION.md +- Dependencies: doc/DEPENDENCIES.md +- Troubleshooting: doc/TROUBLESHOOTING.md +- FAQ: doc/FAQ.md diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/ARCHITECTURE.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/ARCHITECTURE.md new file mode 100644 index 0000000..9f9f393 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/ARCHITECTURE.md @@ -0,0 +1,32 @@ +# Architecture + +```mermaid +flowchart TD + U[Users] -->|HTTP| V[Views and QWeb Templates] + V --> C[Controllers] + V --> W[Wizards – Transient Models] + C --> M[Models and ORM] + W --> M + M --> R[Reports] + DX[Data XML] --> M + S[Security – ACLs and Groups] -. enforces .-> M + + subgraph Website_recaptcha_v2 Module - website_recaptcha_v2 + direction LR + M:::layer + W:::layer + C:::layer + V:::layer + R:::layer + S:::layer + DX:::layer + end + + classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px +``` + +Notes +- Views include tree/form/kanban templates and report templates. +- Controllers provide website/portal routes when present. +- Wizards are UI flows implemented with `models.TransientModel`. +- Data XML loads data/demo records; Security defines groups and access. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/CONFIGURATION.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/CONFIGURATION.md new file mode 100644 index 0000000..9b53c39 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/CONFIGURATION.md @@ -0,0 +1,3 @@ +# Configuration + +Refer to Odoo settings for website_recaptcha_v2. Configure related models, access rights, and options as needed. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/CONTROLLERS.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/CONTROLLERS.md new file mode 100644 index 0000000..f628e77 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/CONTROLLERS.md @@ -0,0 +1,3 @@ +# Controllers + +This module does not define custom HTTP controllers. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/DEPENDENCIES.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/DEPENDENCIES.md new file mode 100644 index 0000000..c1545b8 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/DEPENDENCIES.md @@ -0,0 +1,5 @@ +# Dependencies + +This addon depends on: + +- [website](../../odoo-bringout-oca-ocb-website) diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/FAQ.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/FAQ.md new file mode 100644 index 0000000..aa4560e --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/FAQ.md @@ -0,0 +1,4 @@ +# FAQ + +- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged). +- Q: How to enable? A: Start server with --addon website_recaptcha_v2 or install in UI. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/INSTALL.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/INSTALL.md new file mode 100644 index 0000000..cd2c3bc --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/INSTALL.md @@ -0,0 +1,7 @@ +# Install + +```bash +pip install odoo-bringout-oca-website-website_recaptcha_v2" +# or +uv pip install odoo-bringout-oca-website-website_recaptcha_v2" +``` diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/MODELS.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/MODELS.md new file mode 100644 index 0000000..4b9c805 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/MODELS.md @@ -0,0 +1,13 @@ +# Models + +Detected core models and extensions in website_recaptcha_v2. + +```mermaid +classDiagram + class res_config_settings + class website +``` + +Notes +- Classes show model technical names; fields omitted for brevity. +- Items listed under _inherit are extensions of existing models. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/OVERVIEW.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/OVERVIEW.md new file mode 100644 index 0000000..3bc8ccb --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/OVERVIEW.md @@ -0,0 +1,6 @@ +# Overview + +Packaged Odoo addon: website_recaptcha_v2. Provides features documented in upstream Odoo 16 under this addon. + +- Source: OCA/OCB 16.0, addon website_recaptcha_v2 +- License: LGPL-3 diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/REPORTS.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/REPORTS.md new file mode 100644 index 0000000..e0ea35f --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/REPORTS.md @@ -0,0 +1,3 @@ +# Reports + +This module does not define custom reports. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/SECURITY.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/SECURITY.md new file mode 100644 index 0000000..e07da9d --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/SECURITY.md @@ -0,0 +1,8 @@ +# Security + +This module does not define custom security rules or access controls beyond Odoo defaults. + +Default Odoo security applies: +- Base user access through standard groups +- Model access inherited from dependencies +- No custom row-level security rules diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/TROUBLESHOOTING.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/TROUBLESHOOTING.md new file mode 100644 index 0000000..56853cb --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/TROUBLESHOOTING.md @@ -0,0 +1,5 @@ +# Troubleshooting + +- Ensure Python and Odoo environment matches repo guidance. +- Check database connectivity and logs if startup fails. +- Validate that dependent addons listed in DEPENDENCIES.md are installed. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/USAGE.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/USAGE.md new file mode 100644 index 0000000..7df2aba --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/USAGE.md @@ -0,0 +1,7 @@ +# Usage + +Start Odoo including this addon (from repo root): + +```bash +python3 scripts/nix_odoo_web_server.py --db-name mydb --addon website_recaptcha_v2 +``` diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/doc/WIZARDS.md b/odoo-bringout-oca-website-website_recaptcha_v2/doc/WIZARDS.md new file mode 100644 index 0000000..48e790d --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/doc/WIZARDS.md @@ -0,0 +1,3 @@ +# Wizards + +This module does not include UI wizards. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/pyproject.toml b/odoo-bringout-oca-website-website_recaptcha_v2/pyproject.toml new file mode 100644 index 0000000..a3c1487 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/pyproject.toml @@ -0,0 +1,42 @@ +[project] +name = "odoo-bringout-oca-website-website_recaptcha_v2" +version = "16.0.0" +description = "Website reCAPTCHA v2 - Helper module to add reCAPTCHA v2 to website forms" +authors = [ + { name = "Ernad Husremovic", email = "hernad@bring.out.ba" } +] +dependencies = [ + "odoo-bringout-oca-ocb-website>=16.0.0", + "requests>=2.25.1" +] +readme = "README.md" +requires-python = ">= 3.11" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business", +] + +[project.urls] +homepage = "https://github.com/bringout/0" +repository = "https://github.com/bringout/0" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["website_recaptcha_v2"] + +[tool.rye] +managed = true +dev-dependencies = [ + "pytest>=8.4.1", +] diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/README.rst b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/README.rst new file mode 100644 index 0000000..bb3b7e2 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/README.rst @@ -0,0 +1,106 @@ +==================== +Website reCAPTCHA v2 +==================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:55856dbbdf9c9efc1b9b1ebbb33638a0018eda0d91bd6c8c9e30805aa8f2e5b0 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github + :target: https://github.com/OCA/website/tree/16.0/website_recaptcha_v2 + :alt: OCA/website +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/website-16-0/website-16-0-website_recaptcha_v2 + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to use reCAPTCHA v2 on website forms. + +It is a helper module that only provides the widget and the validation logic +which can be used by other modules to actually display it on website forms and +check whether the user entry is valid. + +This module originally comes from ``website_recaptcha_reloaded`` from Tech +Receptives, which itself comes from ``website_recaptcha`` from Elico Corp. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +reCAPTCHA is configured in Settings > Website. It can be enabled or disabled +using the checkbox, and the site and secret keys can be defined there when it +is enabled. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Elico Corp +* Tech Receptives +* Coop IT Easy SC + +Contributors +~~~~~~~~~~~~ + +* `Elico Corp `_: + + * Augustin Cisterne-Kaas +* `Tech Receptives `_: + + * Parthiv Patel + * Hardik Kalariya + +* `Coop IT Easy SC `_: + + * Houssine Bakkali + * Robin Keunen + * Carmen Bianca Bakker + * Victor Champonnois + * hugues de keyzer + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/website `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__init__.py b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__init__.py new file mode 100644 index 0000000..d4f3369 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__init__.py @@ -0,0 +1,7 @@ +# SPDX-FileCopyrightText: 2010-2014 Elico Corp +# SPDX-FileContributor: Augustin Cisterne-Kaas +# SPDX-FileCopyrightText: 2015 Tech-Receptives Solutions Pvt. Ltd. +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +from . import models diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__manifest__.py b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__manifest__.py new file mode 100644 index 0000000..f8486bf --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/__manifest__.py @@ -0,0 +1,27 @@ +# SPDX-FileCopyrightText: 2010-2014 Elico Corp +# SPDX-FileContributor: Augustin Cisterne-Kaas +# SPDX-FileCopyrightText: 2015 Tech-Receptives Solutions Pvt. Ltd. +# SPDX-FileCopyrightText: 2019 Coop IT Easy SC +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +{ + "name": "Website reCAPTCHA v2", + "version": "16.0.1.0.0", + "category": "Website", + "depends": ["website"], + "author": ( + "Elico Corp, Tech Receptives, Coop IT Easy SC, " + "Odoo Community Association (OCA)" + ), + "license": "AGPL-3", + "website": "https://github.com/OCA/website", + "summary": "Helper module to add reCAPTCHA v2 to website forms", + "data": [ + "views/res_config_settings_view.xml", + "views/website_templates.xml", + ], + "demo": [ + "demo/demo.xml", + ], +} diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/demo/demo.xml b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/demo/demo.xml new file mode 100644 index 0000000..8630a6f --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/demo/demo.xml @@ -0,0 +1,22 @@ + + + + + + True + + 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI + 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe + + + diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/bs.po b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/bs.po new file mode 100644 index 0000000..60e7bd4 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/bs.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_recaptcha_v2 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "" +"\n" +" Get reCAPTCHA v2 keys" +msgstr "" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "" +"" +msgstr "" + +#. module: website_recaptcha_v2 +#: model:ir.model,name:website_recaptcha_v2.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_enabled +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_enabled +msgid "Enable reCAPTCHA v2" +msgstr "omogući reCAPTCHA v2" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "No response given." +msgstr "Jedna zvezda" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "Protect your forms using reCAPTCHA v2" +msgstr "Jedna zvezda od pet" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_secret_key +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_secret_key +msgid "Secret Key (v2)" +msgstr "Secret Key (v2)" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_site_key +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_site_key +msgid "Site Key (v2)" +msgstr "Site Key (v2)" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The challenge was not successfully completed." +msgstr "Ukloni selekciju" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "Tri zvezde od pet" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "" +"The response is no longer valid: either is too old or has been used " +"previously." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The response parameter is invalid or malformed." +msgstr "The response parameter is invalid or malformed." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The response parameter is missing." +msgstr "The response parameter is missing." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The secret parameter is invalid or malformed." +msgstr "The secret parameter is invalid or malformed." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The secret parameter is missing." +msgstr "The secret parameter is missing." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "Unknown reCAPTCHA error (error code: {errorcode})." +msgstr "Unknown reCAPTCHA greška (greška code: {errorcode})." + +#. module: website_recaptcha_v2 +#: model:ir.model,name:website_recaptcha_v2.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "reCAPTCHA icon" +msgstr "reCAPTCHA icon" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "reCAPTCHA v2" +msgstr "reCAPTCHA v2" diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/it.po b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/it.po new file mode 100644 index 0000000..3edd13a --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/it.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_recaptcha_v2 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2024-12-04 12:06+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "" +"\n" +" Get reCAPTCHA v2 keys" +msgstr "" +"\n" +" Ottieni chiavi reCAPTCHA v2" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "" +"" +msgstr "" +"" + +#. module: website_recaptcha_v2 +#: model:ir.model,name:website_recaptcha_v2.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni configurazione" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_enabled +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_enabled +msgid "Enable reCAPTCHA v2" +msgstr "Abilita reCAPTCHA v2" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "No response given." +msgstr "Nessuna risposta data." + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "Protect your forms using reCAPTCHA v2" +msgstr "Proteggere i propri moduli usando reCAPTCHA v2" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_secret_key +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_secret_key +msgid "Secret Key (v2)" +msgstr "Chiave segreta (v2)" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_site_key +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_site_key +msgid "Site Key (v2)" +msgstr "Chiave sito (v2)" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The challenge was not successfully completed." +msgstr "La verifica non è stata completata con successo." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "La richiesta non è valida o malformato." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "" +"The response is no longer valid: either is too old or has been used " +"previously." +msgstr "" +"La risposta non è più valida: è troppo vecchia o è già stata utilizzata." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The response parameter is invalid or malformed." +msgstr "Il parametro della risposta non è valido o malformato." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The response parameter is missing." +msgstr "Manca il parametro della risposta." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The secret parameter is invalid or malformed." +msgstr "Il parametro segreto non è valido o malformato." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The secret parameter is missing." +msgstr "Manca il parametro segreto." + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "Unknown reCAPTCHA error (error code: {errorcode})." +msgstr "Errore reCAPTCHA sconosciuto (codice errore: {errorcode})." + +#. module: website_recaptcha_v2 +#: model:ir.model,name:website_recaptcha_v2.model_website +msgid "Website" +msgstr "Sito web" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "reCAPTCHA icon" +msgstr "Icona reCAPTCHA" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "reCAPTCHA v2" +msgstr "reCAPTCHA v2" diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/website_recaptcha_v2.pot b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/website_recaptcha_v2.pot new file mode 100644 index 0000000..cac362e --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/i18n/website_recaptcha_v2.pot @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_recaptcha_v2 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "" +"\n" +" Get reCAPTCHA v2 keys" +msgstr "" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "" +"" +msgstr "" + +#. module: website_recaptcha_v2 +#: model:ir.model,name:website_recaptcha_v2.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_enabled +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_enabled +msgid "Enable reCAPTCHA v2" +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "No response given." +msgstr "" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "Protect your forms using reCAPTCHA v2" +msgstr "" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_secret_key +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_secret_key +msgid "Secret Key (v2)" +msgstr "" + +#. module: website_recaptcha_v2 +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_res_config_settings__recaptcha_v2_site_key +#: model:ir.model.fields,field_description:website_recaptcha_v2.field_website__recaptcha_v2_site_key +msgid "Site Key (v2)" +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The challenge was not successfully completed." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The request is invalid or malformed." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "" +"The response is no longer valid: either is too old or has been used " +"previously." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The response parameter is invalid or malformed." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The response parameter is missing." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The secret parameter is invalid or malformed." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "The secret parameter is missing." +msgstr "" + +#. module: website_recaptcha_v2 +#. odoo-python +#: code:addons/website_recaptcha_v2/models/website.py:0 +#, python-format +msgid "Unknown reCAPTCHA error (error code: {errorcode})." +msgstr "" + +#. module: website_recaptcha_v2 +#: model:ir.model,name:website_recaptcha_v2.model_website +msgid "Website" +msgstr "" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "reCAPTCHA icon" +msgstr "" + +#. module: website_recaptcha_v2 +#: model_terms:ir.ui.view,arch_db:website_recaptcha_v2.res_config_settings_view_form +msgid "reCAPTCHA v2" +msgstr "" diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/__init__.py b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/__init__.py new file mode 100644 index 0000000..2224c42 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/__init__.py @@ -0,0 +1,9 @@ +# SPDX-FileCopyrightText: 2010-2014 Elico Corp +# SPDX-FileContributor: Augustin Cisterne-Kaas +# SPDX-FileCopyrightText: 2015 Tech-Receptives Solutions Pvt. Ltd. +# SPDX-FileCopyrightText: 2022 Coop IT Easy SC +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +from . import res_config_settings +from . import website diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/res_config_settings.py b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/res_config_settings.py new file mode 100644 index 0000000..fa2e0cf --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/res_config_settings.py @@ -0,0 +1,23 @@ +# SPDX-FileCopyrightText: 2010-2014 Elico Corp +# SPDX-FileContributor: Augustin Cisterne-Kaas +# SPDX-FileCopyrightText: 2015 Tech-Receptives Solutions Pvt. Ltd. +# SPDX-FileCopyrightText: 2019 Simone Orsi - Camptocamp SA +# SPDX-FileCopyrightText: 2019 Coop IT Easy SC +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = "res.config.settings" + + recaptcha_v2_enabled = fields.Boolean( + related="website_id.recaptcha_v2_enabled", readonly=False + ) + recaptcha_v2_site_key = fields.Char( + related="website_id.recaptcha_v2_site_key", readonly=False + ) + recaptcha_v2_secret_key = fields.Char( + related="website_id.recaptcha_v2_secret_key", readonly=False + ) diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/website.py b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/website.py new file mode 100644 index 0000000..f0b4309 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/models/website.py @@ -0,0 +1,77 @@ +# SPDX-FileCopyrightText: 2010-2014 Elico Corp +# SPDX-FileContributor: Augustin Cisterne-Kaas +# SPDX-FileCopyrightText: 2015 Tech-Receptives Solutions Pvt. Ltd. +# SPDX-FileCopyrightText: 2019 Simone Orsi - Camptocamp SA +# SPDX-FileCopyrightText: 2019 Coop IT Easy SC +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +import requests + +from odoo import _, api, fields, models + +RECAPTCHA_API_URL = "https://www.recaptcha.net/recaptcha/api/siteverify" +RECAPTCHA_API_TIMEOUT = 30 + + +class Website(models.Model): + _inherit = "website" + + recaptcha_v2_enabled = fields.Boolean("Enable reCAPTCHA v2") + recaptcha_v2_site_key = fields.Char("Site Key (v2)") + recaptcha_v2_secret_key = fields.Char("Secret Key (v2)") + + @api.model + def _get_error_message(self, errorcode=None): + mapping = { + "missing-input-secret": _("The secret parameter is missing."), + "invalid-input-secret": _("The secret parameter is invalid or malformed."), + "missing-input-response": _("The response parameter is missing."), + "invalid-input-response": _( + "The response parameter is invalid or malformed." + ), + "bad-request": _("The request is invalid or malformed."), + "timeout-or-duplicate": _( + "The response is no longer valid: either is too old or has " + "been used previously." + ), + } + return mapping.get( + errorcode, + _( + "Unknown reCAPTCHA error (error code: {errorcode}).".format( + errorcode=errorcode + ) + ), + ) + + def is_recaptcha_v2_valid(self, form_values): + """ + Checks whether the reCAPTCHA v2 challenge has been correctly solved. + + form_values must be a dictionary containing the form values. + + Returns a (bool, str) tuple. The first element tells whether the + CAPTCHA is valid or not. The second is the error message when + applicable (or an empty string). + + If reCAPTCHA is disabled in the settings, this method behaves as if + the CAPTCHA was correctly solved, but without doing any check. + """ + if not self.recaptcha_v2_enabled: + return (True, "") + response = form_values.get("g-recaptcha-response") + if not response: + return (False, _("No response given.")) + get_res = {"secret": self.recaptcha_v2_secret_key, "response": response} + res = requests.post( + RECAPTCHA_API_URL, data=get_res, timeout=RECAPTCHA_API_TIMEOUT + ).json() + error_msg = "\n".join( + self._get_error_message(error) for error in res.get("error-codes", []) + ) + if error_msg: + return (False, error_msg) + if not res.get("success"): + return (False, _("The challenge was not successfully completed.")) + return (True, "") diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONFIGURE.rst b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONFIGURE.rst new file mode 100644 index 0000000..14e14fe --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONFIGURE.rst @@ -0,0 +1,3 @@ +reCAPTCHA is configured in Settings > Website. It can be enabled or disabled +using the checkbox, and the site and secret keys can be defined there when it +is enabled. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONTRIBUTORS.rst b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..caade69 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/CONTRIBUTORS.rst @@ -0,0 +1,15 @@ +* `Elico Corp `_: + + * Augustin Cisterne-Kaas +* `Tech Receptives `_: + + * Parthiv Patel + * Hardik Kalariya + +* `Coop IT Easy SC `_: + + * Houssine Bakkali + * Robin Keunen + * Carmen Bianca Bakker + * Victor Champonnois + * hugues de keyzer diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/DESCRIPTION.rst b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/DESCRIPTION.rst new file mode 100644 index 0000000..3184f04 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/readme/DESCRIPTION.rst @@ -0,0 +1,8 @@ +This module allows to use reCAPTCHA v2 on website forms. + +It is a helper module that only provides the widget and the validation logic +which can be used by other modules to actually display it on website forms and +check whether the user entry is valid. + +This module originally comes from ``website_recaptcha_reloaded`` from Tech +Receptives, which itself comes from ``website_recaptcha`` from Elico Corp. diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/icon.png b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmeAS@N?(olHy`uVBq!ia0y~yU}ykg4mJh`hQoG=rx_R+Sc;uILpV4%IBGajIv5xj zI14-?iy0VruY)k7lg8`{1_lPn64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xh zq!<_!7(87ZLn`LHt*tDHIlA-t`n>mR!&YzIGHsf8<B$$Um>gET_{naxk1`20D+ zGK1xw!NbPN2|bO89~+N%pEppq=(kLCGSX2uHprJ_E^{*IKIp)+&2id6vuztyvNuL$ zdA^-?<<(!k&+e;bY|S+1xq)99o0@Rk`trRhp89;eyjLw{_#}Fd?PYlPp~B|v=eA_19fIY=^}d z`Y&%tFz9&nD2bzqq3^N7Y3E5x%2bvfyytoH4a>tliVpGd_uqPi)yOgkI3;YpnXolV zu}g_VQNUGDSy{Q`_+thJ&q)fNm%Ljh{I-=l|6ob#z6OiuoDV+#yjCpp-J;>E$(bCp z!w(A@1ehEJBp7+vm>Cp=Iu%5?97SBcnhpjE?J=>;544!GndL*(UcJdDzeqD|zicr1 zB+Kr*e2YIu-<|%v(v6{Vhej6%TXV!XHp{%V<0*k8n&wuV=P@CM@diu2MB$aErCl1|Wb=;ABZB1k~ z_h&QV=Hey>W@hHnmI>mVimzY(p5dc*Bgd>DX4lfyQy6T{FBf#s-KW4IAt~voG%?}2 zOJGfAO3IUeZEbCtD^>imnJV_iO~0CT*NLN2#v@Eb^n2E$n76T&^VrXSeqiAj%%pL6 z(M63z4-G;E6g@93Q1QH-c5cqkoO^M3O$ND~1>fG>yv?b&U$JF}iYJpIOWNj{Uq6e? zyyrh@i3rn-v(L8ti2Ck5sU^Xn!$s-fqmD&8!UbA>zkc3 ziU$rHaF}~BqejMP^SKO@Lpf%~zhzJ8?7BL^L&eC8!E}XZr-w?DhsvZ!o>NpZPic2v zZennDcJ}v}bmWYc6NiqNx0n6;?MJl_Ph~m5wzO2CU4et6)k)K9kpf4)o6aPU zSLF3*ii(4Q#G1(}FI}BZR4GKRa9b>>Ho0?V>CUiyVM|Y{I+(E#x-H9v*zSvrgWYDY;)+L z0gK}V;lyYYskuU4kESR(7)UJnwx_#orq8lHUp~)#q$k=wg@|In{oEpvuoF`&Aya(%9u-w zvFYG~(+LKD+8*z?eUsUJd0b}i`QV<=&F8<_oqGLAPeEKYKzH7~F#Rs2V7sTu99b{D zCVfe>k=wt2;lhQskGp#XStm1G%qZ!;m|>&4zNY!$gk^WN7ha9pa%gH{(ZPx-wzK4a zs^6~dbYXf}Ah9rj<6}ikcpayr`AnZ>&w`ixLS?`q;$0^Y1a_@mf z-`D7@M|C=DD|DVsySJlicSFw06WZP9jHlfG9aUJY*r4LM;bsm;tJ8U|rVYFd$5v}R zo64{;qDS>uVa%*Z_7~UB86Q0#DtKm!oGQatmNYNz;MYqppMI*`m{quW>Edrbo|6*H zW(UT_ojaz@#?Jno$sscGrsypFbe^h=j6G3~$4&#>dorqjo!*2RH}>j&R| z8x}wFiC7!vG3kg}43o$2X~}DTIjWtwe8pKww|8!s(b|H_sxQ&`|B4&WrZt~_np7-W zU0r?g>eZ=gsmGf4tmo@LaD zn!M^+c;6^|ZJtJ_!~f?_0!|#KPM=QPew$I{?$xzx*Gfo9ow8h;b3&W($;?kbYdBb# zW>^-hb#--JdURp>i7T=hGrO~{U;P!l^~=+#UhL^k3k7CpEUM{ua`5D;Y!wq1U%X^V z%h~D|@7^7oX`CMN{w(_^J;o=J-YP;F+1bvnuB@w8t-9pnC>0+0z^f=FXxf*o^HJv) z-v6?A%><{8GSeA8YCB@|(mGk19ZSl}ltj3m?!EL>LxWM{Po4c_wxdUnW{S>VJHdGC zjG8Cr)0@tg$653>AAXqNHBW)#L)G3FZ{Mb#pR9b}WyS_sCzn7McX#$Ve(GswW=yl9))tt96$K7#7I?tqQ`>OtGSz-n^)=DOg?8EC*s3-h3Rg`!tL9| z4<-m~-MZCarVnf4cDW0RFP(%O{2XSVZJRVn$ZglZe{~gm~^x#st$phB>A=9iiSO6EXp3PI@wy_#!?q(vZ^qd)0Vjb@mkW3A_D-BQam%S|K`u`d zv%2GsH#LiBqm@+k$s*3kLWXafa;HYui`TE6 z{r&sj*@&ECVo-Br%82bhnq*P?%S1~{D%|2UTHTTSZ0j|~y zH*a=U*sNQ*J7Zx$+RG(nj9C&A5(h3^5Xj2Py7Ayl#b@J-TnfhvHMF#n_zVI?9)7J7 zZ_-w*eGP) z3RLx9tMoLWtTt-KH6exRO>%N_$4;E!Shad}@ST%CUF=jC-a5_kQ;$xV<)QN6Yn7pq z(V<5x9M>*Q-}FCoj^=8XXTftWO@H_DrDI^A;GMkfuVk8QY|?FhZoBjvk$H8{E>N^^@;Gp0FH?sEUBrf8k(9Xqjx=CS+n>esJ&%&-cYRj;OnnSLY*t@ z*iYP@c3sJ7pH!41M}Wp;*GVcr{?@fPDekzNcUALgvg^9aG7FgvH*?NxS-dt*S9hz| zmF!z-MV!x>gLiRXa59l{4G$Oh^7j6$#9K6xNo_Lc(W6J#XiG^-HlBZ;{I8m8tyhpV z=he?Sy7y0180PL`FlAwCoU`;`gs-DjmizN3f#usSO`h&~B)x0;$vfIdBp8lvdByZ( z0jpsD@r!rw@-Dy3IsNof%{t>=tF+VWuV%I0%}by4{lNo;KXvxElgy&!u6|mgdh6<= z)pyNR*D~l9PUCk<`8Rc5rJo&D3tgEOU+h@4Na@+h$CYw+^Z6eZSR}`7`8023 z($ni(OBkPStx34$!C`FMEY~_FTTjpe)!-$MXBCJ>(~2-o(#6L z4)>2!>$R7jxNME6LEwpHiNTXECT&cSjaf8r&!R<(L{#+!I1(~4JU&-uoeynG-DN&| zsY3m9pL>TsCV2I+rZ_DV56{-z7{OCpTdSd`=O_5GC}M5cvy;q|q|Lv4|DL{PLCmk> zwSP1(Ul#ftrE-FuYY|J@sRX^5*Ntu#^=f+xwY9ek_PPbe#LU^GX>#>L;}SkY1A~SP z6RTx^Rz3AxUvGbV#eAc@eYQ%=@cZwZ8KoF< zKB!6XELy%?ed(v;v-EeyE&LX(&HL2!SG3%^J>`2eGQ*;2T?H9B-P`ZT<1nDK4Dd+|<V8ya+Ae>& zc#)%f88(!>yrf;Sw}Fi-o7Lk0&wl3fIdwd2%O!X3yV;z3dt0MGQ}+73V%*|-XKpY4 za^p@_)UAjK-Rl z9%!O5PluQzSVfB)i*i?=s7i(|vdj3b|(p1xVM%W1-b1ijsj`sWlBRr{lg zD^G3wG(9}|9e?FxO-k6KF+(V#G*kB0Ju9Zk2RWLJzpC(^=NCIw=Wbh;#%&5lgX(40^uYHXSwpdfHypTB+U$&^D~PftHA z+wJIaslI5%PD{(%83_%%rO&HP4Au)dy!-G_Monb)TMl(4k1y^)66XtLPD$Bn#04}O zw?_$D+s+9VU*K*d-Rm}G%9IV6(VZ?#O$r;9Mn=61+-`99rixg%q72{WwTVS1owt3L zkdr&Me10w4}9`wIcoZ)cW1*E6cydfF|(NKC&9zkv8W?LhpqYG1hs$06OTVE*uW*g!uYUY#@ZJr z-8?FHe2SKPe)+tev(m%^uHvy%HhEk9oin{)aQoEyEzi+<9L?fx`Yd^dU(y?NZ=|8U6r4;<>im~PTom=eeOYyZbZ`Q_YiriU$Fxw3O++Tp{8GjelXBO@il*2bLF z3S0Z&shr0yWA)sRS!-o3q~E{1^8UpPk&O{Ob9vG>MwpzJn6&)o*N=~1ym@h;z<`5c z#rpNfA93p)_$aK-;CYC(TWn+Xlb~_%Do@PJ#jpLJvO6$r{ztN z8<#nq8U-0xI0GHlpFdvqX3_4>&o=%4{?*m|J1V}4*;K5XRaI3rr=PLPL-_7Oli=$U zecw;;X5M{wo)Yh(iy60C0#c94SX2nO_sgYD_1`_+!=!6-`uR<=P8v_v?q9sPxpj4< z-p@lVJ{&9mw{PY6d-=CT@dD9>4gycTR|RffD7Sb0e1{4JjtMD>eEj^(3_LRJrPE{C zrk`$2Fz5(gyY@v!{_)0U_Koj0osMw4m17oWQSv$U=d~?ae>YyMH`RDN!$-|xu3wpy zgso4MCa=;&j(^+o<^R;#uL;u@(}`g45OUyoi z98Ay7&OW~GVvX-f&xImct-BvRTwVAk-p=ts3xE3lm(JJM33q%vY3HZZFwyvcRa8f5 z@iT+X$6uBtJ^l2wKt%N6jg83`1s@dF?fT?(Z9R8WgNqVl^T7#08Z$i>Ea$%P>AkR1 zKu8G7=9_1}G-jA|xhOI2zRMRV@ZsO@_sJ?Ehk7K93tp;DU$R8gQ>f*lUS2{1sAo}{ z`}gnP47(bMg#jGXW2-cs77Ao#X9w?U*R&O5$k=X@q!6*|X;I0ZN|Cp__q+A!&XXRCcrrm|)vvB${*gtao7f=b$h9YPmjU$fT`iJ^K0dftfrr%=6{;{duKb zGS{+ssrU4{*(WbPj#;c0VYw669(X;9$9M`Ev8CRa$FecZY4gWYOoGnySjf#%!!_ZDoCPYq$O` zj;mL%W>$tvr<`KvTE?7mI^pYg@g=Q=GVPl-8O^b+7Gtin*Seb*p(B>o?>(vIwEq4% zU%$q!pWf*+`)=RP;%5mbA03_bZAX;cSFt4;T@_Czx(o2NU%Ygwsa?KKBK!Kf)a%|} zULQWH&u@5ap%b-5!_|C&%7SOfnVFi`)<(DY+y9fWIe$27>!G)0$zNB6&ic9J#C8#l z6_OtRpErqWhdtQ){odh|lhqBEuj||TDME*hK{NZ)x4JKaw_~-%x*rB8G&r~OJ?#4W zIxswZ`ON)3|F?d4)UE&Mtoi*T-TyzapAov-!GGl9*5@i|u~!*5h4$Fmg38M^k((bB zSX?S$X87@BvVXv%qQuB#Wv#n;e?Cl$p5UR9U?O!{tvTZ?!>miO3`Z-D1V?6Sis?l( z1ncVl_|vVwq3WvEhnk|0z;#dNS{AqU-jd{DtFV#d;p0=1;CXa-Z?$3hyO@}Ld9l}Q zQctbc=(@2zUmn!3ICsu3C-##u&%PqAW((6Q;|KpY$e#ZH(rVl0bWcxCFE1|vzV_gf z=EL!IopJN|Mf1u}89#}B!uTq9zfmdc@6S|>{r~s<=Gj-sr?6UZcab^_~V24|8MVq`1bDZj-ShB2gJqA`xax$-nS_L)K=T`DL&pIDO{h& za6!>Yo-_Xs8VM|Cy|=%n_uSw64ihF>_et}xeX!}@oPOSDW1i8>3necEs;a6IOr$m@ z9p!2{oH*m`Gm-BmwcDarU;i~<-{;jK0jEie^RM(QKE9ICGbm&{o(okKdip(d=F>wN?-bw)R8-W5 zo5A%*Z$>a|zHYMMqr6_~_1Nz*O#eIOc;?GC-PwEd?bk>D_kLtsVP{Z86JrO2YaQhb9)`^h2O#+EN###s?n^D(1Bxe|(UC-Try9zm??IFHr8ec`E32 zy`90sZ026KECVQA&#-?bmAhj7adBVYjI69fy8>JN z;~Y*)NngBkr{{1xzxv&cU0bGpeA>aT^yAb28m{k)qD=lh7S+72;>l#uv@d^;fdtQt zotc6iiZ`dtnmwD5A$020jEoG2)Kt~o{dq=${l{`_UzbyQSz;XzjM1GcLYPjg>*S#s$8_ruRWFI=@s>+P;v z#wwnN7CyIQVbJ;c@YR+sMuz{-V+C9Uw`xCcGFI!1-d~{jN?gy!@cEPbUv6$;ys-Gm zN|D9Jldq=PhYCFocCHvj#--njYty&g*! z|7Q77V|R7S6$RIdFS6c#Nt&5!{7wrivbg{M&REcL_|NQV8-H80a!0?OeN0zNE2&s; zrAdd2l4R-Rn#Bu*oqF7q-;`NPzgcj2h0XcZe0MbJwJ!%Nciet^?AF$7!T#eP&so1; zuzY!YY`=?=#oddHo|7g>d{s?(_5J1Y;_rnXlUPLFHZ~iQHU^mPglHh9-?gUyrJV#2Sj%#+NMk9wGj#uk^6# zawhTr&tG3I;oSQ!dTrg@bFMuuN^gEdS}k20uzTH;xeP_cy;_w~!JDs4=#;qmZvD!Y z2j6bL+xF~Pnv883j}SxS^P4s{wq46qJPjt~@9lHH_fIB%Z>>N|NpJAiNi%o+xY)~Z zGH1KCDg*E7Yeg$fJXC~o%7jh(pL$)aW>xm5`@qN}&BW|+jcBy@FH z;?-553M~o$|NZ^(Y4!S&`~DmU??_8O{Jn_#-ZVc4r%j(Y3l5%L9k9Q$G^}v_)Ou4* zhr?4Z9Z4}dm|(EsBg-q5#fMLL$tJEjp$(ea*|mFjU{utpX$gTn?pI!~wb=Uq^Ru&u zFD4&1ab2PHP{%Fi&l5Kuleq^U%w&|XV19OQlTL0C+g^L|@40$^%@sY!^oOnVGzt!KWSS@-}L8$qPFjIod70ylQ2U%f4{7t;{ERe%IKQl$WQ^xxFs!TB>pW zm38SxZ=WQdxuYR$x{ay9{zu(uZKHkFm zS&NZF@s9QTJ)7^oEV1)A+~cOKrKNR4<$R9RUbkJzT$j6)r!!`4fiYlX>gj2(&GYX3m~r^w z3~MRA-FN#|ty(puS9{qE-G78GXK-_x^Y@0Uy7*7NHB{hZ6N zYhrttzWY5+1_Pl2hE;Wc9?QoU-Ok-^`>JT?v`f=B-OO3BZk^xl1(|C^SDE)D6%+_K zZ2EAwOEbzO=I7j%la4E~KDo}~=wKk>llj%=e0x+>RN3Db?)Ja(8Tyz!6#Uo5^)(4J zsLor%s@=fqZ~OHM|Mj)e-y3e`q%F6fI(_I~pAxoamFao>%+#>-BO*i*BY68&^k8h9zFjS67GY*MGU_{@*(_ z_36+7x8>vq3mTzxglvWi!4I``G9S7%w5_HMm& z_0cI+2UpkDRqFov`{!z|6Ju;TsL-^S+f8%V?%m&Q{(Lz6fA7wnKb;v4Yb30mo_vUd z!9YlWAyqqk-JTx@+2#NIoMTy>x8(ZSG~=wSEF-H4Dw^B({=IT3z>8t$aX)>=DG#eS z1Y~1Hb?p80ggU>xy|c6U_+@|lzg7)qJ`Ss=Cp&Q-kegLgt=w=ldVAj9XRlVT|5u%5 z#ME&5Y18q?o;OXCdCp(>{_V)Jw@Z#dn?k5&! zPUlu@WpL;+(O}*1<>~bJeXIBFt25r4XCn3RV?{tz)T-GmRi$jIj8_(1-F0Z{j> z9~RvD=>&>`?Dc!U9S^*`j=RC4>U~T2u_b~HsSlzvH#}Ik``xZb)1vc!R!={DG^{P? zuEOP$@;kM1(*(UYsz?{+*EWr%0!NEC|ND>K=TpI(@BY`A&c@fy zymjl=Rn|4noj5AR9kypIFNKgL4(&He%5F*C)k{C|MuqQ z=H%Dc)><>xbTV0%9P83_Wl(UH5@GytZ?eB#<(}0yUl#_f zc)ND{yWB7Fa^tKZG??(8_4v~j~zv#C?3 zeyFgKWS>6eVG-v7H-*%hE5813QrNIK`Kd+SpC7BY->Z79%`l7Mhaqe9UYX!o3?fEK zXCikNJv{{~$kdCUo!QwKXFmJv4AX3}IeyF68M5s9xkSaYz(PiH{@Spg&d$ytcilW$ zTu|@oXWOeV zzDn^0ZVZ((TbvYs)a;wG@mGe)t?k*@*U8@Ap8sFE;V^^K47as$eVLvhgVGoxe*O7; z{{EhdkB`oloNGLo02-FMUDlgaQ86QQ)2#N1v&yzyJw2~|+qP}7{`P;rtUi18?0lvd zjzw+fwq$)R^2ugm&{Q#CjM$ucd0A!o-O}rGKUuQ#wKE&1pK}QeEYjn;J1K0^k}bUR z8=ojn+PinJX1Bi6!hqZJ|9x40f8U2g-13j3FXu&VtFl~X%czm!vVwKPmy_!A_k1~} zy?)R643kZg9;T+IE7q>{Rct6?Tz&qzx8zn~7R8b$Cnkc!_CNOnhDl!crd)sb_0b$f zh6!rCVfxYAa*hf6+Y~Op)0na`A|NK_%rS-+o8CAmfEHkwTzyx**j9JL<~ zvRlhlKAG5Gz_+c+@|-6VLuOrb_cYz;u)hbG`R{1VFJACW<5Sh%YEX^W{_NQ^X9mCI zkdw^k_MT!tmk0{12MkvjGXC5=U$^bSwdnl4;qM%nCM~-goxgW$^6zhN=QCPxC^QxC zc%*qQlPN&s58Ga* Q3=9kmp00i_>zopr09!l7U;qFB literal 0 HcmV?d00001 diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/index.html b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/index.html new file mode 100644 index 0000000..7462acf --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/index.html @@ -0,0 +1,451 @@ + + + + + + +Website reCAPTCHA v2 + + + +
+

Website reCAPTCHA v2

+ + +

Beta License: AGPL-3 OCA/website Translate me on Weblate Try me on Runboat

+

This module allows to use reCAPTCHA v2 on website forms.

+

It is a helper module that only provides the widget and the validation logic +which can be used by other modules to actually display it on website forms and +check whether the user entry is valid.

+

This module originally comes from website_recaptcha_reloaded from Tech +Receptives, which itself comes from website_recaptcha from Elico Corp.

+

Table of contents

+ +
+

Configuration

+

reCAPTCHA is configured in Settings > Website. It can be enabled or disabled +using the checkbox, and the site and secret keys can be defined there when it +is enabled.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Elico Corp
  • +
  • Tech Receptives
  • +
  • Coop IT Easy SC
  • +
+
+
+

Contributors

+
    +
  • Elico Corp:
      +
    • Augustin Cisterne-Kaas
    • +
    +
  • +
  • Tech Receptives:
      +
    • Parthiv Patel
    • +
    • Hardik Kalariya
    • +
    +
  • +
  • Coop IT Easy SC:
      +
    • Houssine Bakkali
    • +
    • Robin Keunen
    • +
    • Carmen Bianca Bakker
    • +
    • Victor Champonnois
    • +
    • hugues de keyzer
    • +
    +
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/website project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/recaptcha_ico.png b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/static/description/recaptcha_ico.png new file mode 100644 index 0000000000000000000000000000000000000000..65f4e0147fd40aca822db867dee902794e30db33 GIT binary patch literal 2228 zcmeAS@N?(olHy`uVBq!ia0y~yU@!n-4mJh`hH$2z?F!lvNA9* zC?tCX`7$t6sWC7#v@kIIVqjosc)`F>YQVtoDuIE)Y6b&?c)^@qfi?^b3~Wi>?k)^q z@Y8vBJp%&+XMsm#F#`j)FbFd;%$g&?z`!Bl>EalYaqsR-?f{YRvd3*7@>$4rwLF;O zS20I{y(u6kz=Cgw^^+aW0*0AB%4RcW@oC+NVw$RWYeAF10j?9q4F&lMUHNByW@XOt zoczo%E$3FxIg^bWOS62`%v82MKJ)GS{lD)wZr{H9`-2NJ-<>JnF?aXh_s>7qzpekT z6ZNIOszaepU}OKI{^nCLJ*VS$IB!h#zA&wCcKZCcb5&1#3Aowx*~fh9{0o+5)0Y>{ z`z1To=k1B+FTBTgXPZgfKdm)eLZ_nY&(HWbTi2{wv4Z!I6StBwXGf2ZM&6!ZX-6+c zCJE2g(|T$lZM|~J#g{X@HT}AFwR>pFs6J_RQ}Rr1^>JF(ab?lTn`?TfeS4ne{&YvF z%f5F`2Pb{_5R&_tz5YYUf+?B{9GPleHl_7UFlGr`wfybL3;z3d{%oCC62HA8c2ULs z>io?Q?+V`dpv58bjiJI`F`QrcWY*%z4vVNwIMD2zx3#4EW8{D9RdqLF#hLrkXvIST!%b z+~yr@vTX9kQ=UxcmcBdiJAB*!uMRs`uR9$4yO`;3F_V-^LPLb*!L0H*0dR z*sPe0S)HdBKiKFnL*UP&x9j&Tef0YCx(7R1+dLapzOtw;FlubzWXajX^pT$r8J^1Yn&t(CV+xDHRZ;GDC7CB%&9ud`@ z@4Ktzy}&!GEe>7JG!A?}%ejJQiNm7i2FU|!?F0pEcju?&N{0JZGxjs3K4a7Ayx?-W zXxqt4t9A=dVJ;VvWjPbV<-?F)-1I%fA*k%hHS2jzuledNSKs@7(bUXFtU~6zgx~~; z6SHPaS=(!LHT%BdL*Y+nQ&N70J-j6@AdvfKX{D+3Bz=>bi>I%zbN^ScG)zWh+R|0K zKbZ;dTT(l1-$ah}P8X+0@ccYD>G)&QO>Z90S6g+a?1yM&NXk#MgSVawf6&kU=e>US z1C3kvV|L4l2u@|a-nN)Y_29#mtES(p?QTow*f9T{M@nWu#F5E`H}B3jU`_d8Zg-w# zhuCne}aP-?&VUH)*|9X%ujcT~H}iW- z9?o=C*&@Opv&%+o>e;V^VAf#gQ!*VfV{_tFGL0M^f(W-<%&iY{Y8Ti5_@q!QJvI`rl87@*ifbH~&~J z{QH*IsrrG{!rGs~My@>v-pfC}Su0SZdgf%Mnnv#54=-E(6wWXTR8wGcTGsMJs^iBU z&It~N3?^3X8fqODt&Ki8d{ZSjsx4*9ett?lG&yEh$w^JO#UJlZnk2MPoYzEdUPFq* zh0n=r#T~D&b-R1d@xh^1?w0MA_5W-P4GaoQRa9Kg8E4FV?9`NRH=kuwwAGpDf+_dz z-Lv;zdWlEe_;Qn6;yec9=7;qy55@JXT-+tZ=d5P}NSQ*ZR4@j*oxm&70TumQPMX;#T*%#6#!9m3nxe z`ud$cQ)6socJ1!ft4r@}PWPV@qc?rQg7bIp-aU2k;>E?w{pasH&U$Xziq)&5pLVwR zv&?YRE&ce&)#$|?QIr0b+sTKXGu?AAE`D}KQX+nNK)F|0`lJG(hRT0tS}zitFMlXW zSoYhzXSS*w=Ypq=`}f!9`TCxHaJVV0dGUb?#jNb?+jnnzZRh^-{d+x+{|%l$hvfFx z|F6631Bd-30Y30;%@G1t1hd@-9Z7J%8>d7@TpcuWK+e zG&HofvH9Z~9esOh?Cvtz`0aVIqIHh`M^ahN7Dw8x7n}G%_cO + + + + + Website settings + res.config.settings + + + +

reCAPTCHA v2

+
+
+
+ +
+
+ reCAPTCHA icon +
+
+
+
+
+
+ +
diff --git a/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/views/website_templates.xml b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/views/website_templates.xml new file mode 100644 index 0000000..f4b2781 --- /dev/null +++ b/odoo-bringout-oca-website-website_recaptcha_v2/website_recaptcha_v2/views/website_templates.xml @@ -0,0 +1,22 @@ + + + + +