diff --git a/README.md b/README.md index faadf30e40..688c9c473f 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,18 @@ Available addons ---------------- addon | version | maintainers | summary --- | --- | --- | --- -[website_cookiebot](website_cookiebot/) | 16.0.1.0.0 | | Ask for cookies consent connecting with Cookiebot +[website_analytics_matomo](website_analytics_matomo/) | 16.0.1.0.0 | | Track website users using matomo +[website_cookiebot](website_cookiebot/) | 16.0.2.0.0 | | Ask for cookies consent connecting with Cookiebot [website_cookiefirst](website_cookiefirst/) | 16.0.1.0.0 | | Cookiefirst integration [website_crm_privacy_policy](website_crm_privacy_policy/) | 16.0.2.0.0 | | Website CRM privacy policy [website_crm_quick_answer](website_crm_quick_answer/) | 16.0.1.0.0 | | Add an automatic answer for contacts asking for info [website_form_require_legal](website_form_require_legal/) | 16.0.1.1.0 | | Add possibility to require confirm legal terms. [website_forum_subscription](website_forum_subscription/) | 16.0.1.0.0 | | Adds a button to allow subscription from the website -[website_google_tag_manager](website_google_tag_manager/) | 16.0.1.0.0 | | Add support for Google Tag Manager +[website_google_tag_manager](website_google_tag_manager/) | 16.0.1.0.1 | | Add support for Google Tag Manager [website_legal_page](website_legal_page/) | 16.0.1.1.0 | | Website Legal Page +[website_menu_by_user_status](website_menu_by_user_status/) | 16.0.1.0.0 | | Allow to manage the display of website.menus [website_odoo_debranding](website_odoo_debranding/) | 16.0.1.0.0 | | Remove Odoo Branding from Website +[website_recaptcha_v2](website_recaptcha_v2/) | 16.0.1.0.0 | | Helper module to add reCAPTCHA v2 to website forms [website_require_login](website_require_login/) | 16.0.1.0.0 | | Website Login Required [website_snippet_country_dropdown](website_snippet_country_dropdown/) | 16.0.1.0.0 | | Allow to select country in a dropdown [website_whatsapp](website_whatsapp/) | 16.0.1.0.1 | [![ioans73](https://github.com/ioans73.png?size=30px)](https://github.com/ioans73) | Whatsapp integration diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 1735eb5849..08f4324410 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -16.0.20240605.0 \ No newline at end of file +16.0.20241217.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index bd83ba803a..21a3236744 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -8,6 +8,7 @@ description="Meta package for oca-website Odoo addons", version=version, install_requires=[ + 'odoo-addon-website_analytics_matomo>=16.0dev,<16.1dev', 'odoo-addon-website_cookiebot>=16.0dev,<16.1dev', 'odoo-addon-website_cookiefirst>=16.0dev,<16.1dev', 'odoo-addon-website_crm_privacy_policy>=16.0dev,<16.1dev', @@ -16,7 +17,9 @@ 'odoo-addon-website_forum_subscription>=16.0dev,<16.1dev', 'odoo-addon-website_google_tag_manager>=16.0dev,<16.1dev', 'odoo-addon-website_legal_page>=16.0dev,<16.1dev', + 'odoo-addon-website_menu_by_user_status>=16.0dev,<16.1dev', 'odoo-addon-website_odoo_debranding>=16.0dev,<16.1dev', + 'odoo-addon-website_recaptcha_v2>=16.0dev,<16.1dev', 'odoo-addon-website_require_login>=16.0dev,<16.1dev', 'odoo-addon-website_snippet_country_dropdown>=16.0dev,<16.1dev', 'odoo-addon-website_whatsapp>=16.0dev,<16.1dev', diff --git a/setup/website_analytics_matomo/odoo/addons/website_analytics_matomo b/setup/website_analytics_matomo/odoo/addons/website_analytics_matomo new file mode 120000 index 0000000000..4911df7bdd --- /dev/null +++ b/setup/website_analytics_matomo/odoo/addons/website_analytics_matomo @@ -0,0 +1 @@ +../../../../website_analytics_matomo \ No newline at end of file diff --git a/setup/website_analytics_matomo/setup.py b/setup/website_analytics_matomo/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_analytics_matomo/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/website_menu_by_user_status/odoo/addons/website_menu_by_user_status b/setup/website_menu_by_user_status/odoo/addons/website_menu_by_user_status new file mode 120000 index 0000000000..a8109a7f6e --- /dev/null +++ b/setup/website_menu_by_user_status/odoo/addons/website_menu_by_user_status @@ -0,0 +1 @@ +../../../../website_menu_by_user_status \ No newline at end of file diff --git a/setup/website_menu_by_user_status/setup.py b/setup/website_menu_by_user_status/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_menu_by_user_status/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/website_recaptcha_v2/odoo/addons/website_recaptcha_v2 b/setup/website_recaptcha_v2/odoo/addons/website_recaptcha_v2 new file mode 120000 index 0000000000..8ea48c47d8 --- /dev/null +++ b/setup/website_recaptcha_v2/odoo/addons/website_recaptcha_v2 @@ -0,0 +1 @@ +../../../../website_recaptcha_v2 \ No newline at end of file diff --git a/setup/website_recaptcha_v2/setup.py b/setup/website_recaptcha_v2/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_recaptcha_v2/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/website_analytics_matomo/README.rst b/website_analytics_matomo/README.rst new file mode 100644 index 0000000000..2b3c55513f --- /dev/null +++ b/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/website_analytics_matomo/__init__.py b/website_analytics_matomo/__init__.py new file mode 100644 index 0000000000..369ae410e9 --- /dev/null +++ b/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/website_analytics_matomo/__manifest__.py b/website_analytics_matomo/__manifest__.py new file mode 100644 index 0000000000..1a76e786e2 --- /dev/null +++ b/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/website_analytics_matomo/i18n/af.po b/website_analytics_matomo/i18n/af.po new file mode 100644 index 0000000000..017f0c993b --- /dev/null +++ b/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/website_analytics_matomo/i18n/ar.po b/website_analytics_matomo/i18n/ar.po new file mode 100644 index 0000000000..ac11e6b7cf --- /dev/null +++ b/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/website_analytics_matomo/i18n/bg.po b/website_analytics_matomo/i18n/bg.po new file mode 100644 index 0000000000..574084fd56 --- /dev/null +++ b/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/website_analytics_matomo/i18n/bs.po b/website_analytics_matomo/i18n/bs.po new file mode 100644 index 0000000000..4a13b31088 --- /dev/null +++ b/website_analytics_matomo/i18n/bs.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: Bosnian (http://www.transifex.com/oca/OCA-website-8-0/" +"language/bs/)\n" +"Language: bs\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/website_analytics_matomo/i18n/ca.po b/website_analytics_matomo/i18n/ca.po new file mode 100644 index 0000000000..054014ef03 --- /dev/null +++ b/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/website_analytics_matomo/i18n/cs.po b/website_analytics_matomo/i18n/cs.po new file mode 100644 index 0000000000..10ed7a0e9d --- /dev/null +++ b/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/website_analytics_matomo/i18n/da.po b/website_analytics_matomo/i18n/da.po new file mode 100644 index 0000000000..77f39daea9 --- /dev/null +++ b/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/website_analytics_matomo/i18n/de.po b/website_analytics_matomo/i18n/de.po new file mode 100644 index 0000000000..3b7a530b53 --- /dev/null +++ b/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/website_analytics_matomo/i18n/el.po b/website_analytics_matomo/i18n/el.po new file mode 100644 index 0000000000..53a370619f --- /dev/null +++ b/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/website_analytics_matomo/i18n/el_GR.po b/website_analytics_matomo/i18n/el_GR.po new file mode 100644 index 0000000000..99e5c32e00 --- /dev/null +++ b/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/website_analytics_matomo/i18n/en_GB.po b/website_analytics_matomo/i18n/en_GB.po new file mode 100644 index 0000000000..03cf52c8d8 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es.po b/website_analytics_matomo/i18n/es.po new file mode 100644 index 0000000000..ecde89b28a --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_AR.po b/website_analytics_matomo/i18n/es_AR.po new file mode 100644 index 0000000000..cbcaef3282 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_CL.po b/website_analytics_matomo/i18n/es_CL.po new file mode 100644 index 0000000000..accc64017f --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_CO.po b/website_analytics_matomo/i18n/es_CO.po new file mode 100644 index 0000000000..537c3c98d7 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_CR.po b/website_analytics_matomo/i18n/es_CR.po new file mode 100644 index 0000000000..9bf9d74094 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_DO.po b/website_analytics_matomo/i18n/es_DO.po new file mode 100644 index 0000000000..acd66f9bdb --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_EC.po b/website_analytics_matomo/i18n/es_EC.po new file mode 100644 index 0000000000..4d07f17fe9 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_MX.po b/website_analytics_matomo/i18n/es_MX.po new file mode 100644 index 0000000000..e84acce863 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_PE.po b/website_analytics_matomo/i18n/es_PE.po new file mode 100644 index 0000000000..a1d7051309 --- /dev/null +++ b/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/website_analytics_matomo/i18n/es_VE.po b/website_analytics_matomo/i18n/es_VE.po new file mode 100644 index 0000000000..77f9e4fa97 --- /dev/null +++ b/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/website_analytics_matomo/i18n/et.po b/website_analytics_matomo/i18n/et.po new file mode 100644 index 0000000000..f2296f3db2 --- /dev/null +++ b/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/website_analytics_matomo/i18n/eu.po b/website_analytics_matomo/i18n/eu.po new file mode 100644 index 0000000000..8d0eca6cd3 --- /dev/null +++ b/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/website_analytics_matomo/i18n/fa.po b/website_analytics_matomo/i18n/fa.po new file mode 100644 index 0000000000..75cc7c979f --- /dev/null +++ b/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/website_analytics_matomo/i18n/fi.po b/website_analytics_matomo/i18n/fi.po new file mode 100644 index 0000000000..b3a1b580f4 --- /dev/null +++ b/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/website_analytics_matomo/i18n/fr.po b/website_analytics_matomo/i18n/fr.po new file mode 100644 index 0000000000..e1f80c0558 --- /dev/null +++ b/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/website_analytics_matomo/i18n/gl.po b/website_analytics_matomo/i18n/gl.po new file mode 100644 index 0000000000..21b8a47c3a --- /dev/null +++ b/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/website_analytics_matomo/i18n/he.po b/website_analytics_matomo/i18n/he.po new file mode 100644 index 0000000000..591ff384ae --- /dev/null +++ b/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/website_analytics_matomo/i18n/hr.po b/website_analytics_matomo/i18n/hr.po new file mode 100644 index 0000000000..966ece7e23 --- /dev/null +++ b/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/website_analytics_matomo/i18n/hr_HR.po b/website_analytics_matomo/i18n/hr_HR.po new file mode 100644 index 0000000000..4a6632ab66 --- /dev/null +++ b/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/website_analytics_matomo/i18n/hu.po b/website_analytics_matomo/i18n/hu.po new file mode 100644 index 0000000000..d46fdbc5af --- /dev/null +++ b/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/website_analytics_matomo/i18n/id.po b/website_analytics_matomo/i18n/id.po new file mode 100644 index 0000000000..5a57a81900 --- /dev/null +++ b/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/website_analytics_matomo/i18n/it.po b/website_analytics_matomo/i18n/it.po new file mode 100644 index 0000000000..06103c2481 --- /dev/null +++ b/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/website_analytics_matomo/i18n/ja.po b/website_analytics_matomo/i18n/ja.po new file mode 100644 index 0000000000..5f18a53cd3 --- /dev/null +++ b/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/website_analytics_matomo/i18n/ka.po b/website_analytics_matomo/i18n/ka.po new file mode 100644 index 0000000000..421b6b3b35 --- /dev/null +++ b/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/website_analytics_matomo/i18n/kab.po b/website_analytics_matomo/i18n/kab.po new file mode 100644 index 0000000000..a76788fd6c --- /dev/null +++ b/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/website_analytics_matomo/i18n/ko.po b/website_analytics_matomo/i18n/ko.po new file mode 100644 index 0000000000..3667e899c5 --- /dev/null +++ b/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/website_analytics_matomo/i18n/lt.po b/website_analytics_matomo/i18n/lt.po new file mode 100644 index 0000000000..89f58b54f3 --- /dev/null +++ b/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/website_analytics_matomo/i18n/lv.po b/website_analytics_matomo/i18n/lv.po new file mode 100644 index 0000000000..fe3f99c954 --- /dev/null +++ b/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/website_analytics_matomo/i18n/mk.po b/website_analytics_matomo/i18n/mk.po new file mode 100644 index 0000000000..9c5bc4cc9d --- /dev/null +++ b/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/website_analytics_matomo/i18n/mn.po b/website_analytics_matomo/i18n/mn.po new file mode 100644 index 0000000000..1a2621dd89 --- /dev/null +++ b/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/website_analytics_matomo/i18n/nb.po b/website_analytics_matomo/i18n/nb.po new file mode 100644 index 0000000000..b85ab4e28c --- /dev/null +++ b/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/website_analytics_matomo/i18n/nl.po b/website_analytics_matomo/i18n/nl.po new file mode 100644 index 0000000000..2bd0d02873 --- /dev/null +++ b/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/website_analytics_matomo/i18n/nl_NL.po b/website_analytics_matomo/i18n/nl_NL.po new file mode 100644 index 0000000000..8a46aa0837 --- /dev/null +++ b/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/website_analytics_matomo/i18n/pl.po b/website_analytics_matomo/i18n/pl.po new file mode 100644 index 0000000000..3b65f5b689 --- /dev/null +++ b/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/website_analytics_matomo/i18n/pt_BR.po b/website_analytics_matomo/i18n/pt_BR.po new file mode 100644 index 0000000000..3ec4dfb63b --- /dev/null +++ b/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/website_analytics_matomo/i18n/ru.po b/website_analytics_matomo/i18n/ru.po new file mode 100644 index 0000000000..44b568e18d --- /dev/null +++ b/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/website_analytics_matomo/i18n/sk.po b/website_analytics_matomo/i18n/sk.po new file mode 100644 index 0000000000..100c2676d6 --- /dev/null +++ b/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/website_analytics_matomo/i18n/sl.po b/website_analytics_matomo/i18n/sl.po new file mode 100644 index 0000000000..a09b524f50 --- /dev/null +++ b/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/website_analytics_matomo/i18n/sr.po b/website_analytics_matomo/i18n/sr.po new file mode 100644 index 0000000000..0268a8196f --- /dev/null +++ b/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/website_analytics_matomo/i18n/sr@latin.po b/website_analytics_matomo/i18n/sr@latin.po new file mode 100644 index 0000000000..c927fe9376 --- /dev/null +++ b/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/website_analytics_matomo/i18n/sv.po b/website_analytics_matomo/i18n/sv.po new file mode 100644 index 0000000000..db16d2ed3d --- /dev/null +++ b/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/website_analytics_matomo/i18n/th.po b/website_analytics_matomo/i18n/th.po new file mode 100644 index 0000000000..f8cae86efe --- /dev/null +++ b/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/website_analytics_matomo/i18n/tr.po b/website_analytics_matomo/i18n/tr.po new file mode 100644 index 0000000000..f73ec1a823 --- /dev/null +++ b/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/website_analytics_matomo/i18n/uk.po b/website_analytics_matomo/i18n/uk.po new file mode 100644 index 0000000000..2240159e62 --- /dev/null +++ b/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/website_analytics_matomo/i18n/vi.po b/website_analytics_matomo/i18n/vi.po new file mode 100644 index 0000000000..3e2d6540a4 --- /dev/null +++ b/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/website_analytics_matomo/i18n/website_analytics_matomo.pot b/website_analytics_matomo/i18n/website_analytics_matomo.pot new file mode 100644 index 0000000000..e7ce8cd4e6 --- /dev/null +++ b/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/website_analytics_matomo/i18n/website_analytics_piwik.pot b/website_analytics_matomo/i18n/website_analytics_piwik.pot new file mode 100644 index 0000000000..982f29ecb3 --- /dev/null +++ b/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/website_analytics_matomo/i18n/zh_CN.po b/website_analytics_matomo/i18n/zh_CN.po new file mode 100644 index 0000000000..e1c17d109f --- /dev/null +++ b/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/website_analytics_matomo/i18n/zh_TW.po b/website_analytics_matomo/i18n/zh_TW.po new file mode 100644 index 0000000000..0844883c3d --- /dev/null +++ b/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/website_analytics_matomo/models/__init__.py b/website_analytics_matomo/models/__init__.py new file mode 100644 index 0000000000..45b3979ec6 --- /dev/null +++ b/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/website_analytics_matomo/models/res_config_settings.py b/website_analytics_matomo/models/res_config_settings.py new file mode 100644 index 0000000000..9336b6323b --- /dev/null +++ b/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/website_analytics_matomo/models/website.py b/website_analytics_matomo/models/website.py new file mode 100644 index 0000000000..e6a40355f7 --- /dev/null +++ b/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/website_analytics_matomo/readme/CONFIGURE.rst b/website_analytics_matomo/readme/CONFIGURE.rst new file mode 100644 index 0000000000..894516afb1 --- /dev/null +++ b/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/website_analytics_matomo/readme/CONTRIBUTORS.rst b/website_analytics_matomo/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..c8cae4be01 --- /dev/null +++ b/website_analytics_matomo/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Holger Brunn +* Andrea Stirpe diff --git a/website_analytics_matomo/readme/DESCRIPTION.rst b/website_analytics_matomo/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..3b1e76b1fd --- /dev/null +++ b/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/website_analytics_matomo/static/description/icon.png b/website_analytics_matomo/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/website_analytics_matomo/static/description/icon.png differ diff --git a/website_analytics_matomo/static/description/index.html b/website_analytics_matomo/static/description/index.html new file mode 100644 index 0000000000..1fc70fbaf3 --- /dev/null +++ b/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/website_analytics_matomo/tests/__init__.py b/website_analytics_matomo/tests/__init__.py new file mode 100644 index 0000000000..6e8fb78514 --- /dev/null +++ b/website_analytics_matomo/tests/__init__.py @@ -0,0 +1 @@ +from . import test_analytics_matomo diff --git a/website_analytics_matomo/tests/test_analytics_matomo.py b/website_analytics_matomo/tests/test_analytics_matomo.py new file mode 100644 index 0000000000..1c8148f222 --- /dev/null +++ b/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/website_analytics_matomo/views/res_config_settings.xml b/website_analytics_matomo/views/res_config_settings.xml new file mode 100644 index 0000000000..2042071910 --- /dev/null +++ b/website_analytics_matomo/views/res_config_settings.xml @@ -0,0 +1,91 @@ + + + + res.config.settings + + +
+
+
+ +
+
+
+
+
+
+
+
diff --git a/website_analytics_matomo/views/templates.xml b/website_analytics_matomo/views/templates.xml new file mode 100644 index 0000000000..fc20a3b773 --- /dev/null +++ b/website_analytics_matomo/views/templates.xml @@ -0,0 +1,42 @@ + + + + + + diff --git a/website_cookiebot/README.rst b/website_cookiebot/README.rst index 7d636dc7ec..32627963b6 100644 --- a/website_cookiebot/README.rst +++ b/website_cookiebot/README.rst @@ -7,7 +7,7 @@ Website Cookiebot !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:ad3b18f916c5328a080782468e39f4a779ca017d52b24300036f9f96c5f32a14 + !! source digest: sha256:ac3198e9e153575161d66cb4028f1f14c2a162e32c2fa2d39fbf9f719fd52e08 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/website_cookiebot/__manifest__.py b/website_cookiebot/__manifest__.py index a14c7a2474..290f3049d2 100644 --- a/website_cookiebot/__manifest__.py +++ b/website_cookiebot/__manifest__.py @@ -5,7 +5,7 @@ "name": "Website Cookiebot", "summary": "Ask for cookies consent connecting with Cookiebot", "category": "Website", - "version": "16.0.1.0.0", + "version": "16.0.2.0.0", "author": "Trey (www.trey.es), Tecnativa, Odoo Community Association (OCA)", "website": "https://github.com/OCA/website", "license": "AGPL-3", diff --git a/website_cookiebot/i18n/de.po b/website_cookiebot/i18n/de.po index 4746b5b153..679a8585e0 100644 --- a/website_cookiebot/i18n/de.po +++ b/website_cookiebot/i18n/de.po @@ -78,6 +78,11 @@ msgstr "" msgid "Cookiebot Domain Group ID" msgstr "Cookiebot Domänengruppen-ID" +#. module: website_cookiebot +#: model:ir.model.fields,field_description:website_cookiebot.field_website__cookiebot_enabled +msgid "Cookiebot Enabled" +msgstr "" + #. module: website_cookiebot #: model_terms:ir.ui.view,arch_db:website_cookiebot.layout_footer_copyright msgid "Cookies Policy" diff --git a/website_cookiebot/i18n/es.po b/website_cookiebot/i18n/es.po index 75758dd667..42f13753fe 100644 --- a/website_cookiebot/i18n/es.po +++ b/website_cookiebot/i18n/es.po @@ -79,6 +79,11 @@ msgstr "Cookiebot" msgid "Cookiebot Domain Group ID" msgstr "Cookiebot Dominio Grupo ID" +#. module: website_cookiebot +#: model:ir.model.fields,field_description:website_cookiebot.field_website__cookiebot_enabled +msgid "Cookiebot Enabled" +msgstr "" + #. module: website_cookiebot #: model_terms:ir.ui.view,arch_db:website_cookiebot.layout_footer_copyright msgid "Cookies Policy" diff --git a/website_cookiebot/i18n/it.po b/website_cookiebot/i18n/it.po index 6b3bd3beae..3a80392319 100644 --- a/website_cookiebot/i18n/it.po +++ b/website_cookiebot/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-14 15:36+0000\n" +"PO-Revision-Date: 2024-08-16 09:58+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -14,7 +14,7 @@ msgstr "" "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" +"X-Generator: Weblate 5.6.2\n" #. module: website_cookiebot #: model_terms:ir.ui.view,arch_db:website_cookiebot.res_config_settings_view_form @@ -43,7 +43,8 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:website_cookiebot.res_config_settings_view_form msgid "" "\n" -" Instead of step 3, paste here your Domain Group ID.\n" +" Instead of step 3, paste here your " +"Domain Group ID.\n" " " msgstr "" "\n" @@ -76,6 +77,11 @@ msgstr "Cookiebot" msgid "Cookiebot Domain Group ID" msgstr "ID gruppo dominio cookiebot" +#. module: website_cookiebot +#: model:ir.model.fields,field_description:website_cookiebot.field_website__cookiebot_enabled +msgid "Cookiebot Enabled" +msgstr "BOT cookie abilitato" + #. module: website_cookiebot #: model_terms:ir.ui.view,arch_db:website_cookiebot.layout_footer_copyright msgid "Cookies Policy" diff --git a/website_cookiebot/i18n/website_cookiebot.pot b/website_cookiebot/i18n/website_cookiebot.pot index b493e99a42..a640bc2990 100644 --- a/website_cookiebot/i18n/website_cookiebot.pot +++ b/website_cookiebot/i18n/website_cookiebot.pot @@ -65,6 +65,11 @@ msgstr "" msgid "Cookiebot Domain Group ID" msgstr "" +#. module: website_cookiebot +#: model:ir.model.fields,field_description:website_cookiebot.field_website__cookiebot_enabled +msgid "Cookiebot Enabled" +msgstr "" + #. module: website_cookiebot #: model_terms:ir.ui.view,arch_db:website_cookiebot.layout_footer_copyright msgid "Cookies Policy" diff --git a/website_cookiebot/migrations/16.0.2.0.0/post-migrate.py b/website_cookiebot/migrations/16.0.2.0.0/post-migrate.py new file mode 100644 index 0000000000..5789f20b54 --- /dev/null +++ b/website_cookiebot/migrations/16.0.2.0.0/post-migrate.py @@ -0,0 +1,10 @@ +# Copyright 2024 Tecnativa - David Vidal +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + # We're adding cookiebot_enabled to the website so it's easier to disable the + # cookiebot scripts temporarily + env["website"].search([("cookiebot_dgid", "!=", False)]).cookiebot_enabled = True diff --git a/website_cookiebot/models/website.py b/website_cookiebot/models/website.py index 4654117215..0cd3ebc3d6 100644 --- a/website_cookiebot/models/website.py +++ b/website_cookiebot/models/website.py @@ -11,3 +11,4 @@ class Website(models.Model): string="Cookiebot Domain Group ID", help="Get this code from Cookiebot to enable it on the website.", ) + cookiebot_enabled = fields.Boolean() diff --git a/website_cookiebot/templates/assets.xml b/website_cookiebot/templates/assets.xml index d84c8484d0..9c1e27e840 100644 --- a/website_cookiebot/templates/assets.xml +++ b/website_cookiebot/templates/assets.xml @@ -6,7 +6,9 @@ - +