diff --git a/.travis.yml b/.travis.yml index 85245b3dca..e6d23b3394 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,11 @@ env: virtualenv: system_site_packages: true +before_install: + - rvm install ruby --latest + - gem install bootstrap-sass + - gem install compass --pre + install: - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} diff --git a/README.md b/README.md index 8baca79139..99d9cc577e 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,10 @@ Available addons ---------------- addon | version | summary --- | --- | --- +[website_analytics_piwik](website_analytics_piwik/) | 10.0.1.0.0 | Track website users using piwik +[website_anchor_smooth_scroll](website_anchor_smooth_scroll/) | 10.0.1.0.0 | Replace default behavior for internal links (anchor only) with smooth scroll +[website_breadcrumb](website_breadcrumb/) | 10.0.1.0.0 | Let you have breadcrumbs in website pages +[website_container_fluid](website_container_fluid/) | 10.0.1.0.0 | Let you choose between fixed or fluid containers [website_crm_recaptcha](website_crm_recaptcha/) | 10.0.1.0.0 | Provides a ReCaptcha validation in Website Contact Form [website_field_autocomplete](website_field_autocomplete/) | 10.0.1.0.0 | Provides an autocomplete field for Website on any model [website_form_recaptcha](website_form_recaptcha/) | 10.0.1.0.0 | Provides a ReCaptcha field for Website Forms @@ -25,6 +29,7 @@ addon | version | summary [website_sale_hide_empty_category](website_sale_hide_empty_category/) | 10.0.1.0.0 | Hide any Product Categories that are empty [website_sale_line_total](website_sale_line_total/) | 10.0.1.0.0 | Adds separate columns for unit price and total price [website_seo_redirection](website_seo_redirection/) | 10.0.1.0.0 | Redirect any controller to the URL of your dreams +[website_snippet_country_dropdown](website_snippet_country_dropdown/) | 10.0.1.0.0 | Allow to select country in a dropdown [website_snippet_data_slider](website_snippet_data_slider/) | 10.0.1.0.0 | Abstract data slider for use on website. Primary use (and default implementation) is product slider. @@ -32,16 +37,11 @@ Unported addons --------------- addon | version | summary --- | --- | --- -[website_analytics_piwik](website_analytics_piwik/) | 8.0.1.0.0 (unported) | Track website users using piwik -[website_anchor_smooth_scroll](website_anchor_smooth_scroll/) | 9.0.1.0.0 (unported) | Replace default behavior for internal links (anchor only) with smooth scroll [website_backend_views](website_backend_views/) | 8.0.1.0.0 (unported) | Hook backend views into your website frontend [website_blog_facebook_comment](website_blog_facebook_comment/) | 8.0.1.0.0 (unported) | Add Facebook comments on blog posts [website_blog_mgmt](website_blog_mgmt/) | 9.0.1.0.0 (unported) | Website blog Management -[website_container_fluid](website_container_fluid/) | 8.0.1.0.1 (unported) | Let you choose between fixed or fluid containers [website_cookie_notice](website_cookie_notice/) | 8.0.1.0.0 (unported) | Show cookie notice according to cookie law [website_crm_privacy_policy](website_crm_privacy_policy/) | 8.0.1.0.0 (unported) | Website CRM privacy policy -[website_event_register_free](website_event_register_free/) | 8.0.1.0.0 (unported) | Avoid shopping chart when registering for free events -[website_event_register_free_with_sale](website_event_register_free_with_sale/) | 8.0.1.0.0 (unported) | Combine free and paid tickets on events [website_forum_censored](website_forum_censored/) | 9.0.1.0.0 (unported) | Block phrases entered in forum posts and comments. [website_hr_department](website_hr_department/) | 8.0.0.1.0 (unported) | Display the structure of your departments and their members. [website_legal_page](website_legal_page/) | 9.0.1.0.0 (unported) | Website Legal Page @@ -52,6 +52,5 @@ addon | version | summary [website_portal_purchase](website_portal_purchase/) | 9.0.1.0.0 (unported) | Add purchase orders and quotation in the frontend portal [website_sale_order_company](website_sale_order_company/) | 8.0.1.0.0 (unported) | Set order company according to products company [website_sale_unsaleable_options](website_sale_unsaleable_options/) | 8.0.1.0.0 (unported) | Prevent optional products to be sold singularly -[website_snippet_country_dropdown](website_snippet_country_dropdown/) | 9.0.1.0.0 (unported) | Allow to select country in a dropdown [//]: # (end addons) diff --git a/setup/website_analytics_piwik/odoo/__init__.py b/setup/website_analytics_piwik/odoo/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_analytics_piwik/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_analytics_piwik/odoo/addons/__init__.py b/setup/website_analytics_piwik/odoo/addons/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_analytics_piwik/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_analytics_piwik/odoo/addons/website_analytics_piwik b/setup/website_analytics_piwik/odoo/addons/website_analytics_piwik new file mode 120000 index 0000000000..6f9edf3e62 --- /dev/null +++ b/setup/website_analytics_piwik/odoo/addons/website_analytics_piwik @@ -0,0 +1 @@ +../../../../website_analytics_piwik \ No newline at end of file diff --git a/setup/website_analytics_piwik/setup.py b/setup/website_analytics_piwik/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_analytics_piwik/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/website_anchor_smooth_scroll/odoo/__init__.py b/setup/website_anchor_smooth_scroll/odoo/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_anchor_smooth_scroll/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_anchor_smooth_scroll/odoo/addons/__init__.py b/setup/website_anchor_smooth_scroll/odoo/addons/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_anchor_smooth_scroll/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_anchor_smooth_scroll/odoo/addons/website_anchor_smooth_scroll b/setup/website_anchor_smooth_scroll/odoo/addons/website_anchor_smooth_scroll new file mode 120000 index 0000000000..374dca4c06 --- /dev/null +++ b/setup/website_anchor_smooth_scroll/odoo/addons/website_anchor_smooth_scroll @@ -0,0 +1 @@ +../../../../website_anchor_smooth_scroll \ No newline at end of file diff --git a/setup/website_anchor_smooth_scroll/setup.py b/setup/website_anchor_smooth_scroll/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_anchor_smooth_scroll/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/website_breadcrumb/odoo/__init__.py b/setup/website_breadcrumb/odoo/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_breadcrumb/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_breadcrumb/odoo/addons/__init__.py b/setup/website_breadcrumb/odoo/addons/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_breadcrumb/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_breadcrumb/odoo/addons/website_breadcrumb b/setup/website_breadcrumb/odoo/addons/website_breadcrumb new file mode 120000 index 0000000000..eedcfeb8cb --- /dev/null +++ b/setup/website_breadcrumb/odoo/addons/website_breadcrumb @@ -0,0 +1 @@ +../../../../website_breadcrumb \ No newline at end of file diff --git a/setup/website_breadcrumb/setup.py b/setup/website_breadcrumb/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_breadcrumb/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/website_container_fluid/odoo/__init__.py b/setup/website_container_fluid/odoo/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_container_fluid/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_container_fluid/odoo/addons/__init__.py b/setup/website_container_fluid/odoo/addons/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_container_fluid/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_container_fluid/odoo/addons/website_container_fluid b/setup/website_container_fluid/odoo/addons/website_container_fluid new file mode 120000 index 0000000000..20d9133d85 --- /dev/null +++ b/setup/website_container_fluid/odoo/addons/website_container_fluid @@ -0,0 +1 @@ +../../../../website_container_fluid \ No newline at end of file diff --git a/setup/website_container_fluid/setup.py b/setup/website_container_fluid/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_container_fluid/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/website_snippet_country_dropdown/odoo/__init__.py b/setup/website_snippet_country_dropdown/odoo/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_snippet_country_dropdown/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_snippet_country_dropdown/odoo/addons/__init__.py b/setup/website_snippet_country_dropdown/odoo/addons/__init__.py new file mode 100644 index 0000000000..de40ea7ca0 --- /dev/null +++ b/setup/website_snippet_country_dropdown/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/website_snippet_country_dropdown/odoo/addons/website_snippet_country_dropdown b/setup/website_snippet_country_dropdown/odoo/addons/website_snippet_country_dropdown new file mode 120000 index 0000000000..a4888b0492 --- /dev/null +++ b/setup/website_snippet_country_dropdown/odoo/addons/website_snippet_country_dropdown @@ -0,0 +1 @@ +../../../../website_snippet_country_dropdown \ No newline at end of file diff --git a/setup/website_snippet_country_dropdown/setup.py b/setup/website_snippet_country_dropdown/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_snippet_country_dropdown/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/website_analytics_piwik/README.rst b/website_analytics_piwik/README.rst index 275fd4f795..b5dbd6ea2c 100644 --- a/website_analytics_piwik/README.rst +++ b/website_analytics_piwik/README.rst @@ -1,3 +1,8 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============== Piwik analytics =============== @@ -10,11 +15,24 @@ Configuration To configure this module, you need to: -* go to Settings/Configuration/Website Settings +* go to Website Admin/Configuration/Settings * fill in `Piwik website ID` and `Piwik host` * Take care that you fill in the correct value for `Piwik host`, it should be so that http[s]://[`Piwik host`]/piwik.php resolves to your copy of `piwik.php` + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/186/10.0 + +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 smash it by providing detailed and welcomed feedback. + Credits ======= @@ -22,6 +40,7 @@ Contributors ------------ * Holger Brunn +* Andrea Stirpe Icon ---- @@ -31,12 +50,14 @@ http://piwik.org/media Maintainer ---------- -.. image:: http://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: http://odoo-community.org +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org This module is maintained by the OCA. -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. +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. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/website_analytics_piwik/__init__.py b/website_analytics_piwik/__init__.py index 48f5a69485..332fc2ca88 100644 --- a/website_analytics_piwik/__init__.py +++ b/website_analytics_piwik/__init__.py @@ -1,21 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from . import models diff --git a/website_analytics_piwik/__manifest__.py b/website_analytics_piwik/__manifest__.py index 12fcaa827b..af410bcb6f 100644 --- a/website_analytics_piwik/__manifest__.py +++ b/website_analytics_piwik/__manifest__.py @@ -1,39 +1,21 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + { "name": "Piwik analytics", - "version": "8.0.1.0.0", + "version": "10.0.1.0.0", "author": "Therp BV,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Website", "summary": "Track website users using piwik", "depends": [ - 'website', + "website", ], "data": [ "views/website_config_settings.xml", "views/website.xml", - 'views/templates.xml', + "views/templates.xml", ], - "auto_install": False, - 'installable': False, - "application": False, + "installable": True, } diff --git a/website_analytics_piwik/i18n/af.po b/website_analytics_piwik/i18n/af.po new file mode 100644 index 0000000000..6685b8e8b3 --- /dev/null +++ b/website_analytics_piwik/i18n/af.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Webtuiste" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/ar.po b/website_analytics_piwik/i18n/ar.po new file mode 100644 index 0000000000..6f25325aae --- /dev/null +++ b/website_analytics_piwik/i18n/ar.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "الموقع" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/bg.po b/website_analytics_piwik/i18n/bg.po new file mode 100644 index 0000000000..9bfd0404f9 --- /dev/null +++ b/website_analytics_piwik/i18n/bg.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Уебсайт" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/bs.po b/website_analytics_piwik/i18n/bs.po new file mode 100644 index 0000000000..2ecc6cc4a0 --- /dev/null +++ b/website_analytics_piwik/i18n/bs.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/ca.po b/website_analytics_piwik/i18n/ca.po new file mode 100644 index 0000000000..904d62cc0f --- /dev/null +++ b/website_analytics_piwik/i18n/ca.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Lloc web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/cs.po b/website_analytics_piwik/i18n/cs.po new file mode 100644 index 0000000000..2e1122fe6f --- /dev/null +++ b/website_analytics_piwik/i18n/cs.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Webová stránka" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/da.po b/website_analytics_piwik/i18n/da.po new file mode 100644 index 0000000000..768e0cf74f --- /dev/null +++ b/website_analytics_piwik/i18n/da.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Hjemmeside" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/de.po b/website_analytics_piwik/i18n/de.po new file mode 100644 index 0000000000..d1d3f2431b --- /dev/null +++ b/website_analytics_piwik/i18n/de.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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: 2015-09-25 08:26+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-website-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Webseite" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/el.po b/website_analytics_piwik/i18n/el.po new file mode 100644 index 0000000000..eb81a28079 --- /dev/null +++ b/website_analytics_piwik/i18n/el.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Ιστότοπος" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/el_GR.po b/website_analytics_piwik/i18n/el_GR.po new file mode 100644 index 0000000000..3292745d2d --- /dev/null +++ b/website_analytics_piwik/i18n/el_GR.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Ιστότοπος" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "host.name/piwik" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/en_GB.po b/website_analytics_piwik/i18n/en_GB.po new file mode 100644 index 0000000000..3c4167cc6b --- /dev/null +++ b/website_analytics_piwik/i18n/en_GB.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/es.po b/website_analytics_piwik/i18n/es.po new file mode 100644 index 0000000000..b03a90dc33 --- /dev/null +++ b/website_analytics_piwik/i18n/es.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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 (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "Host Piwik" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_AR.po b/website_analytics_piwik/i18n/es_AR.po new file mode 100644 index 0000000000..38a933e3ac --- /dev/null +++ b/website_analytics_piwik/i18n/es_AR.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_CL.po b/website_analytics_piwik/i18n/es_CL.po new file mode 100644 index 0000000000..f59149cc16 --- /dev/null +++ b/website_analytics_piwik/i18n/es_CL.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_CO.po b/website_analytics_piwik/i18n/es_CO.po new file mode 100644 index 0000000000..15fe4dd683 --- /dev/null +++ b/website_analytics_piwik/i18n/es_CO.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_CR.po b/website_analytics_piwik/i18n/es_CR.po new file mode 100644 index 0000000000..9c1ceb9e51 --- /dev/null +++ b/website_analytics_piwik/i18n/es_CR.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_DO.po b/website_analytics_piwik/i18n/es_DO.po new file mode 100644 index 0000000000..553ee4d7e8 --- /dev/null +++ b/website_analytics_piwik/i18n/es_DO.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_EC.po b/website_analytics_piwik/i18n/es_EC.po new file mode 100644 index 0000000000..67a7d4fec1 --- /dev/null +++ b/website_analytics_piwik/i18n/es_EC.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_MX.po b/website_analytics_piwik/i18n/es_MX.po new file mode 100644 index 0000000000..a48fe26352 --- /dev/null +++ b/website_analytics_piwik/i18n/es_MX.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/es_PE.po b/website_analytics_piwik/i18n/es_PE.po new file mode 100644 index 0000000000..5e84c9781a --- /dev/null +++ b/website_analytics_piwik/i18n/es_PE.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/et.po b/website_analytics_piwik/i18n/et.po new file mode 100644 index 0000000000..a7e1086cda --- /dev/null +++ b/website_analytics_piwik/i18n/et.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Veebileht" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/eu.po b/website_analytics_piwik/i18n/eu.po new file mode 100644 index 0000000000..97f395d433 --- /dev/null +++ b/website_analytics_piwik/i18n/eu.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "host.name/piwik" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/fa.po b/website_analytics_piwik/i18n/fa.po new file mode 100644 index 0000000000..b7c6414c27 --- /dev/null +++ b/website_analytics_piwik/i18n/fa.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "تارنما" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/fi.po b/website_analytics_piwik/i18n/fi.po new file mode 100644 index 0000000000..ef9a0a3cd7 --- /dev/null +++ b/website_analytics_piwik/i18n/fi.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Verkkosivut" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/fr.po b/website_analytics_piwik/i18n/fr.po index 627a7abee0..2b5a0ac6f3 100644 --- a/website_analytics_piwik/i18n/fr.po +++ b/website_analytics_piwik/i18n/fr.po @@ -3,15 +3,15 @@ # * website_analytics_piwik # # Translators: -# Loic , 2015 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: website (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-03 23:14+0000\n" -"PO-Revision-Date: 2015-10-01 21:45+0000\n" -"Last-Translator: Loic \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-website-8-0/language/fr/)\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: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,26 +19,32 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: website_analytics_piwik -#: field:website,piwik_analytics_host:0 +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host msgid "Piwik host" msgstr "Hébergement PIWIK" #. module: website_analytics_piwik -#: field:website,piwik_analytics_id:0 +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id msgid "Piwik website ID" msgstr "Id du site internet PIWIK" #. module: website_analytics_piwik -#: help:website,piwik_analytics_id:0 +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id msgid "The ID Piwik uses to identify the website" msgstr "Le ID de Piwik est utilisé pour identifier le site internet" #. module: website_analytics_piwik -#: help:website,piwik_analytics_host:0 +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host msgid "" "The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" "So http[s]://[this field]/piwik.php should resolve to your piwik.php" -msgstr "Le chemin de l'hébergement de votre installation Piwik est accessible sur Internet. Cela n'inclue pas pas le protcol de l'hébergement.\nDonc http[s]://[this field]/piwik.php devrait résoudre votre piwik.php" +msgstr "" +"Le chemin de l'hébergement de votre installation Piwik est accessible sur Internet. Cela n'inclue pas pas le protcol de l'hébergement.\n" +"Donc http[s]://[this field]/piwik.php devrait résoudre votre piwik.php" #. module: website_analytics_piwik #: model:ir.model,name:website_analytics_piwik.model_website @@ -46,7 +52,12 @@ msgid "Website" msgstr "Site Internet" #. module: website_analytics_piwik -#: view:website:website_analytics_piwik.view_website_form -#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form msgid "host.name/piwik" msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/he.po b/website_analytics_piwik/i18n/he.po new file mode 100644 index 0000000000..e768a31054 --- /dev/null +++ b/website_analytics_piwik/i18n/he.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "אתר" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/hr.po b/website_analytics_piwik/i18n/hr.po new file mode 100644 index 0000000000..a9b8277e75 --- /dev/null +++ b/website_analytics_piwik/i18n/hr.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Web stranice" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/hr_HR.po b/website_analytics_piwik/i18n/hr_HR.po new file mode 100644 index 0000000000..058bca9a2b --- /dev/null +++ b/website_analytics_piwik/i18n/hr_HR.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Webstranice" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/hu.po b/website_analytics_piwik/i18n/hu.po new file mode 100644 index 0000000000..238df554a4 --- /dev/null +++ b/website_analytics_piwik/i18n/hu.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Honlap" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/id.po b/website_analytics_piwik/i18n/id.po new file mode 100644 index 0000000000..f8549ba4a5 --- /dev/null +++ b/website_analytics_piwik/i18n/id.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Situs Web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/it.po b/website_analytics_piwik/i18n/it.po new file mode 100644 index 0000000000..e1af1e9843 --- /dev/null +++ b/website_analytics_piwik/i18n/it.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "Host Piwik" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "ID Piwik del sito" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "L'ID che Piwik utilizza per identificare il sito" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" +"L'host/percorso da cui la tua installazione Piwik è accessibile da internet. Non includere qui il protocollo!\n" +"Sicché http[s]://[questo campo]/piwik.php dovrebbe puntare al tuo file piwik.php" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Sito" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "host.name/piwik" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/ja.po b/website_analytics_piwik/i18n/ja.po new file mode 100644 index 0000000000..e3bab979ff --- /dev/null +++ b/website_analytics_piwik/i18n/ja.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "ウェブサイト" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/ka.po b/website_analytics_piwik/i18n/ka.po new file mode 100644 index 0000000000..66fe7cefaf --- /dev/null +++ b/website_analytics_piwik/i18n/ka.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "ვებსაიტი" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/kab.po b/website_analytics_piwik/i18n/kab.po new file mode 100644 index 0000000000..e5afbf7cb3 --- /dev/null +++ b/website_analytics_piwik/i18n/kab.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Asmel Web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/ko.po b/website_analytics_piwik/i18n/ko.po new file mode 100644 index 0000000000..bf0776c27e --- /dev/null +++ b/website_analytics_piwik/i18n/ko.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "웹사이트" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/lt.po b/website_analytics_piwik/i18n/lt.po new file mode 100644 index 0000000000..87e849d529 --- /dev/null +++ b/website_analytics_piwik/i18n/lt.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Tinklapis" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/lv.po b/website_analytics_piwik/i18n/lv.po new file mode 100644 index 0000000000..faf8e6803d --- /dev/null +++ b/website_analytics_piwik/i18n/lv.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Tīkla vietne" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/mk.po b/website_analytics_piwik/i18n/mk.po new file mode 100644 index 0000000000..6c79699994 --- /dev/null +++ b/website_analytics_piwik/i18n/mk.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Вебсајт" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/mn.po b/website_analytics_piwik/i18n/mn.po new file mode 100644 index 0000000000..1d70230333 --- /dev/null +++ b/website_analytics_piwik/i18n/mn.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Вэбсайт" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/nb.po b/website_analytics_piwik/i18n/nb.po new file mode 100644 index 0000000000..c3edbbcb3a --- /dev/null +++ b/website_analytics_piwik/i18n/nb.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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: Norwegian Bokmål (http://www.transifex.com/oca/OCA-website-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Nettsted" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/pl.po b/website_analytics_piwik/i18n/pl.po new file mode 100644 index 0000000000..a13fceebdb --- /dev/null +++ b/website_analytics_piwik/i18n/pl.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\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_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Strona WWW" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/pt_BR.po b/website_analytics_piwik/i18n/pt_BR.po new file mode 100644 index 0000000000..83621e533b --- /dev/null +++ b/website_analytics_piwik/i18n/pt_BR.po @@ -0,0 +1,64 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "Host Piwik" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "Piwik site ID" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "O ID que o Piwik usa para identificar o site" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" +"O host/caminho de sua instalação Piwik. Não inclua o \n" +"protocolo aqui!\n" +"Ex: http[s]://[este campo]/piwik.php" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Website" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/ru.po b/website_analytics_piwik/i18n/ru.po new file mode 100644 index 0000000000..97c03ab8c2 --- /dev/null +++ b/website_analytics_piwik/i18n/ru.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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_piwik +#: field:website,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Сайт" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/sk.po b/website_analytics_piwik/i18n/sk.po new file mode 100644 index 0000000000..a23ebb476a --- /dev/null +++ b/website_analytics_piwik/i18n/sk.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Webová stránka" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/sl.po b/website_analytics_piwik/i18n/sl.po new file mode 100644 index 0000000000..6961df45bf --- /dev/null +++ b/website_analytics_piwik/i18n/sl.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "Piwik gostitelj" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "ID Piwik spletne strani" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "Piwik ID za identifikacijo spletne strani" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" +"Gostitelj/pot Piwik namestitve, ki je dosegljiva preko spleta. Na to mesto ne vstavljajte protokola!\n" +"http[s]://[to polje]/piwik.php bi moralo kazati na vaš piwik.php" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Spletna stran" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "host.name/piwik" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/sr.po b/website_analytics_piwik/i18n/sr.po new file mode 100644 index 0000000000..663edeb493 --- /dev/null +++ b/website_analytics_piwik/i18n/sr.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\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_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_host +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,field_description:website_analytics_piwik.field_website_piwik_analytics_id +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_id +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_id +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model.fields,help:website_analytics_piwik.field_website_config_settings_piwik_analytics_host +#: model:ir.model.fields,help:website_analytics_piwik.field_website_piwik_analytics_host +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_analytics_piwik +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_config_settings +#: model:ir.ui.view,arch_db:website_analytics_piwik.view_website_form +msgid "host.name/piwik" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website_config_settings +msgid "website.config.settings" +msgstr "" diff --git a/website_analytics_piwik/i18n/sr@latin.po b/website_analytics_piwik/i18n/sr@latin.po new file mode 100644 index 0000000000..d3f83cd2da --- /dev/null +++ b/website_analytics_piwik/i18n/sr@latin.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Internet stranica" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/sv.po b/website_analytics_piwik/i18n/sv.po new file mode 100644 index 0000000000..ed09fc9bb3 --- /dev/null +++ b/website_analytics_piwik/i18n/sv.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Webbplats" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/th.po b/website_analytics_piwik/i18n/th.po new file mode 100644 index 0000000000..2b9a68584a --- /dev/null +++ b/website_analytics_piwik/i18n/th.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "เว็บไซต์" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/uk.po b/website_analytics_piwik/i18n/uk.po new file mode 100644 index 0000000000..72c41ebaab --- /dev/null +++ b/website_analytics_piwik/i18n/uk.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\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_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/vi.po b/website_analytics_piwik/i18n/vi.po new file mode 100644 index 0000000000..e50370f1f8 --- /dev/null +++ b/website_analytics_piwik/i18n/vi.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "Trang web" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/zh_CN.po b/website_analytics_piwik/i18n/zh_CN.po new file mode 100644 index 0000000000..b552f56a73 --- /dev/null +++ b/website_analytics_piwik/i18n/zh_CN.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "网站" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/i18n/zh_TW.po b/website_analytics_piwik/i18n/zh_TW.po new file mode 100644 index 0000000000..8809c01370 --- /dev/null +++ b/website_analytics_piwik/i18n/zh_TW.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_analytics_piwik +# +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_host:0 +#: field:website.config.settings,piwik_analytics_host:0 +msgid "Piwik host" +msgstr "" + +#. module: website_analytics_piwik +#: field:website,piwik_analytics_id:0 +#: field:website.config.settings,piwik_analytics_id:0 +msgid "Piwik website ID" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_id:0 +#: help:website.config.settings,piwik_analytics_id:0 +msgid "The ID Piwik uses to identify the website" +msgstr "" + +#. module: website_analytics_piwik +#: help:website,piwik_analytics_host:0 +#: help:website.config.settings,piwik_analytics_host:0 +msgid "" +"The host/path your Piwik installation is accessible by on the internet. Do not include a protocol here!\n" +"So http[s]://[this field]/piwik.php should resolve to your piwik.php" +msgstr "" + +#. module: website_analytics_piwik +#: model:ir.model,name:website_analytics_piwik.model_website +msgid "Website" +msgstr "網站" + +#. module: website_analytics_piwik +#: view:website:website_analytics_piwik.view_website_form +#: view:website.config.settings:website_analytics_piwik.view_website_config_settings +msgid "host.name/piwik" +msgstr "" diff --git a/website_analytics_piwik/models/__init__.py b/website_analytics_piwik/models/__init__.py index 8f5180b98f..97d25bf58b 100644 --- a/website_analytics_piwik/models/__init__.py +++ b/website_analytics_piwik/models/__init__.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from . import website from . import website_config_settings diff --git a/website_analytics_piwik/models/website.py b/website_analytics_piwik/models/website.py index 57c99c40fd..f09ac511a6 100644 --- a/website_analytics_piwik/models/website.py +++ b/website_analytics_piwik/models/website.py @@ -1,24 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import models, fields +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models, fields class Website(models.Model): diff --git a/website_analytics_piwik/models/website_config_settings.py b/website_analytics_piwik/models/website_config_settings.py index c60bc3f369..3a745920ae 100644 --- a/website_analytics_piwik/models/website_config_settings.py +++ b/website_analytics_piwik/models/website_config_settings.py @@ -1,24 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import models, fields +# Copyright 2015 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models, fields class WebsiteConfigSettings(models.TransientModel): diff --git a/website_analytics_piwik/views/templates.xml b/website_analytics_piwik/views/templates.xml index 362bc01152..be0595e0cd 100644 --- a/website_analytics_piwik/views/templates.xml +++ b/website_analytics_piwik/views/templates.xml @@ -1,24 +1,24 @@ - - - - - + + + + + diff --git a/website_analytics_piwik/views/website.xml b/website_analytics_piwik/views/website.xml index 45398b7e75..5aa0bcdd58 100644 --- a/website_analytics_piwik/views/website.xml +++ b/website_analytics_piwik/views/website.xml @@ -1,15 +1,15 @@ - - - - website - - - - - - + + + + website + + + + + - - - + + + + diff --git a/website_analytics_piwik/views/website_config_settings.xml b/website_analytics_piwik/views/website_config_settings.xml index 3e6b6c10b1..61239f6c26 100644 --- a/website_analytics_piwik/views/website_config_settings.xml +++ b/website_analytics_piwik/views/website_config_settings.xml @@ -1,15 +1,15 @@ - - - - website.config.settings - - -
- - -
-
-
-
-
+ + + + website.config.settings + + +
+ + +
+
+
+ +
diff --git a/website_anchor_smooth_scroll/__manifest__.py b/website_anchor_smooth_scroll/__manifest__.py index 806c464e5d..9761b22753 100644 --- a/website_anchor_smooth_scroll/__manifest__.py +++ b/website_anchor_smooth_scroll/__manifest__.py @@ -7,7 +7,7 @@ 'name': 'Smooth Scroll for Website Anchors', 'summary': 'Replace default behavior for internal links (anchor only) with' ' smooth scroll', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'category': 'Website', 'website': 'http://www.antiun.com', 'author': 'Antiun Ingeniería S.L., ' @@ -16,7 +16,7 @@ 'Odoo Community Association (OCA)', 'license': 'AGPL-3', 'application': False, - 'installable': False, + 'installable': True, 'depends': [ 'website', ], diff --git a/website_anchor_smooth_scroll/i18n/bg.po b/website_anchor_smooth_scroll/i18n/bg.po new file mode 100644 index 0000000000..83b4b9b717 --- /dev/null +++ b/website_anchor_smooth_scroll/i18n/bg.po @@ -0,0 +1,69 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_anchor_smooth_scroll +# +# Translators: +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 03:55+0000\n" +"PO-Revision-Date: 2016-11-29 03:55+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_anchor_smooth_scroll +#: model:website.menu,name:website_anchor_smooth_scroll.website_anchor_smooth_scroll_menu +msgid "Anchor Smooth Scroll Demo" +msgstr "" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "It works for any links to #anchors in your website!" +msgstr "" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "More dummy content" +msgstr "Още примерно съдържание" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - голяма снимка." + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "Press the button below and enjoy a smooth experience." +msgstr "" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "Scroll to bottom" +msgstr "Отиди в края" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "Scroll to top" +msgstr "Отиди в началото" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "Smooth? Nice." +msgstr "Гладко? Готино!" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "This is dummy content" +msgstr "Това е примерно съдържание" + +#. module: website_anchor_smooth_scroll +#: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo +msgid "Try smooth scrolling. Easily." +msgstr "Оптиайте гладкото местене. С лекота." diff --git a/website_anchor_smooth_scroll/i18n/es.po b/website_anchor_smooth_scroll/i18n/es.po index f47f191095..88ed9c38b1 100644 --- a/website_anchor_smooth_scroll/i18n/es.po +++ b/website_anchor_smooth_scroll/i18n/es.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Pedro M. Baeza , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-26 16:36+0000\n" -"PO-Revision-Date: 2016-08-26 16:36+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-11-29 03:55+0000\n" +"PO-Revision-Date: 2016-11-29 03:55+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,17 +22,17 @@ msgstr "" #. module: website_anchor_smooth_scroll #: model:website.menu,name:website_anchor_smooth_scroll.website_anchor_smooth_scroll_menu msgid "Anchor Smooth Scroll Demo" -msgstr "" +msgstr "Demo desplaz. suave de ancla" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "It works for any links to #anchors in your website!" -msgstr "" +msgstr "¡Funciona para cualquier enlace a #anclas en su sitio web!" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "More dummy content" -msgstr "" +msgstr "Más contenido de relleno" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo @@ -41,29 +42,29 @@ msgstr "CMS Odoo - una imagen grande" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "Press the button below and enjoy a smooth experience." -msgstr "" +msgstr "Pulse el botón a continuación para disfrutar de una experiencia suave" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "Scroll to bottom" -msgstr "" +msgstr "Desplazamiento a la parte de abajo" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "Scroll to top" -msgstr "" +msgstr "Desplazamiento a la parte de arriba" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "Smooth? Nice." -msgstr "" +msgstr "¿Suave? Es agradable." #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "This is dummy content" -msgstr "" +msgstr "Esto es un contenido de relleno" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "Try smooth scrolling. Easily." -msgstr "" +msgstr "Pruebe el desplazamiento suave. Fácilmente." diff --git a/website_anchor_smooth_scroll/i18n/fr.po b/website_anchor_smooth_scroll/i18n/fr.po index e97c705851..62cd1030ae 100644 --- a/website_anchor_smooth_scroll/i18n/fr.po +++ b/website_anchor_smooth_scroll/i18n/fr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Sébastien Alix , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-26 16:36+0000\n" -"PO-Revision-Date: 2016-08-26 16:36+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-11-29 03:55+0000\n" +"PO-Revision-Date: 2016-11-29 03:55+0000\n" +"Last-Translator: Sébastien Alix , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,13 +22,12 @@ msgstr "" #. module: website_anchor_smooth_scroll #: model:website.menu,name:website_anchor_smooth_scroll.website_anchor_smooth_scroll_menu msgid "Anchor Smooth Scroll Demo" -msgstr "" +msgstr "Démonstration du défilement fluide sur les liens ancrés" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo msgid "It works for any links to #anchors in your website!" -msgstr "" -"Celà fonctionne pour tous les liens des #ancres de votre site internet!" +msgstr "Cela fonctionne pour tous les liens ancrés de votre site web !" #. module: website_anchor_smooth_scroll #: model:ir.ui.view,arch_db:website_anchor_smooth_scroll.demo diff --git a/website_breadcrumb/README.rst b/website_breadcrumb/README.rst new file mode 100644 index 0000000000..f20a9dd630 --- /dev/null +++ b/website_breadcrumb/README.rst @@ -0,0 +1,92 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +=================== +Website Breadcrumbs +=================== + +This module allows you to have breadcrumbs in any page of your website. +But if an URL is not present in a menu (as indicated in the Configuration section), no breadcrumbs will display. + +Configuration +============= + +To configure the shown breadcrumbs, you need to: + +#. Enable developer mode. +#. Go to *Website Admin > Configuration > Settings > Menu > + Configure website menus". +#. Remove the website grouping from the filter if it is set. +#. Edit any menu there. + +Keep in mind that: + +* This module will try to match **exactly** the URL in the menu item with the + one you are browsing. +* If it finds no match, breadcrumbs will not be shown. +* If it finds several matches, only the first one will be used. +* Using more than 1 submenu for the website top menu will probably make it + unusable. In case you need that granularity, you will have to create a + separate top menu for managing your breadcrumbs. +* Breadcrumbs use the menu name, **not the page name**, except for the top menu + item, which will appear as *Home* and point to ``/`` unless you specify an + URL for it. + +Usage +===== + +To use this module, you need to: + +* Log in. +* Go to your homepage. +* Go to *Customize* menu. +* Enable *Breadcrumbs* (it is enabled by default). + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/186/9.0 + + +Theming +======= + +* If you want to use this module in a theme but you do not like where it is + rendered, you can simply disable it in the top menu and add in you own + layout a ```` element. + +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 smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Jairo Llopis: Icon. + +Contributors +------------ + +* Jairo Llopis + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/website_breadcrumb/__init__.py b/website_breadcrumb/__init__.py new file mode 100644 index 0000000000..1f2bbfd6d2 --- /dev/null +++ b/website_breadcrumb/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). + +from . import models diff --git a/website_breadcrumb/__manifest__.py b/website_breadcrumb/__manifest__.py new file mode 100644 index 0000000000..9377aa74fb --- /dev/null +++ b/website_breadcrumb/__manifest__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). +{ + "name": "Website Breadcrumbs", + "summary": "Let you have breadcrumbs in website pages", + "version": "10.0.1.0.0", + "category": "Website", + "website": "https://grupoesoc.es/", + "author": "Grupo ESOC Ingeniería de Servicios, " + "Odoo Community Association (OCA)", + "license": "LGPL-3", + "application": False, + "installable": True, + "depends": [ + "website", + ], + "data": [ + "views/templates.xml", + "views/layout.xml", + ], +} diff --git a/website_breadcrumb/i18n/ar.po b/website_breadcrumb/i18n/ar.po new file mode 100644 index 0000000000..557f2b6cc9 --- /dev/null +++ b/website_breadcrumb/i18n/ar.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "المنزل" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/ca.po b/website_breadcrumb/i18n/ca.po new file mode 100644 index 0000000000..804b7b08d2 --- /dev/null +++ b/website_breadcrumb/i18n/ca.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Inici" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/de.po b/website_breadcrumb/i18n/de.po new file mode 100644 index 0000000000..6f30afeea1 --- /dev/null +++ b/website_breadcrumb/i18n/de.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Anfangsseite" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Webseitenmenü" diff --git a/website_breadcrumb/i18n/el.po b/website_breadcrumb/i18n/el.po new file mode 100644 index 0000000000..fb2e4b3e63 --- /dev/null +++ b/website_breadcrumb/i18n/el.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Αρχική σελίδα" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/el_GR.po b/website_breadcrumb/i18n/el_GR.po new file mode 100644 index 0000000000..ae7f183c3f --- /dev/null +++ b/website_breadcrumb/i18n/el_GR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Αρχική σελίδα" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Μενού Iστότοπου" diff --git a/website_breadcrumb/i18n/en.po b/website_breadcrumb/i18n/en.po new file mode 100644 index 0000000000..2f358441fc --- /dev/null +++ b/website_breadcrumb/i18n/en.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: website (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-05 19:41+0000\n" +"PO-Revision-Date: 2015-12-28 16:36+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-website-8-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: view:website:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Home" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Website Menu" diff --git a/website_breadcrumb/i18n/es.po b/website_breadcrumb/i18n/es.po new file mode 100644 index 0000000000..bef73d0f60 --- /dev/null +++ b/website_breadcrumb/i18n/es.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Inicio" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Menú del sitio web" diff --git a/website_breadcrumb/i18n/es_CR.po b/website_breadcrumb/i18n/es_CR.po new file mode 100644 index 0000000000..08fe5efa35 --- /dev/null +++ b/website_breadcrumb/i18n/es_CR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Casa" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/es_MX.po b/website_breadcrumb/i18n/es_MX.po new file mode 100644 index 0000000000..53ed04c3af --- /dev/null +++ b/website_breadcrumb/i18n/es_MX.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Casa" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/es_VE.po b/website_breadcrumb/i18n/es_VE.po new file mode 100644 index 0000000000..793497ef2d --- /dev/null +++ b/website_breadcrumb/i18n/es_VE.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Casa" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/fi.po b/website_breadcrumb/i18n/fi.po new file mode 100644 index 0000000000..24f994ec51 --- /dev/null +++ b/website_breadcrumb/i18n/fi.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Alkuun" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/fr.po b/website_breadcrumb/i18n/fr.po new file mode 100644 index 0000000000..1460fbfaa5 --- /dev/null +++ b/website_breadcrumb/i18n/fr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: Christophe CHAUVET , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Accueil" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Menu site internet" diff --git a/website_breadcrumb/i18n/gl.po b/website_breadcrumb/i18n/gl.po new file mode 100644 index 0000000000..bfccd1d54e --- /dev/null +++ b/website_breadcrumb/i18n/gl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Inicio" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/hr.po b/website_breadcrumb/i18n/hr.po new file mode 100644 index 0000000000..3238168afa --- /dev/null +++ b/website_breadcrumb/i18n/hr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Naslovna" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/hu.po b/website_breadcrumb/i18n/hu.po new file mode 100644 index 0000000000..78cb7f21d8 --- /dev/null +++ b/website_breadcrumb/i18n/hu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Kezdőlap" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/it.po b/website_breadcrumb/i18n/it.po new file mode 100644 index 0000000000..514c95522c --- /dev/null +++ b/website_breadcrumb/i18n/it.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Home" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Menu del sito" diff --git a/website_breadcrumb/i18n/ja.po b/website_breadcrumb/i18n/ja.po new file mode 100644 index 0000000000..d10a868302 --- /dev/null +++ b/website_breadcrumb/i18n/ja.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "自宅" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/lt.po b/website_breadcrumb/i18n/lt.po new file mode 100644 index 0000000000..d37413940f --- /dev/null +++ b/website_breadcrumb/i18n/lt.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Pradžia" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/lv.po b/website_breadcrumb/i18n/lv.po new file mode 100644 index 0000000000..66c0fff7b6 --- /dev/null +++ b/website_breadcrumb/i18n/lv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Mājas" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/mk.po b/website_breadcrumb/i18n/mk.po new file mode 100644 index 0000000000..530034c7fb --- /dev/null +++ b/website_breadcrumb/i18n/mk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Дома" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/mn.po b/website_breadcrumb/i18n/mn.po new file mode 100644 index 0000000000..800743e5ec --- /dev/null +++ b/website_breadcrumb/i18n/mn.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Гэр" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/nl.po b/website_breadcrumb/i18n/nl.po new file mode 100644 index 0000000000..cae9f14d5e --- /dev/null +++ b/website_breadcrumb/i18n/nl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Thuis" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/pl.po b/website_breadcrumb/i18n/pl.po new file mode 100644 index 0000000000..110e01ab9e --- /dev/null +++ b/website_breadcrumb/i18n/pl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Dom" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/pt.po b/website_breadcrumb/i18n/pt.po new file mode 100644 index 0000000000..720098705a --- /dev/null +++ b/website_breadcrumb/i18n/pt.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Página Inicial" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/pt_BR.po b/website_breadcrumb/i18n/pt_BR.po new file mode 100644 index 0000000000..da1015a7e3 --- /dev/null +++ b/website_breadcrumb/i18n/pt_BR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Inicio" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Menu site" diff --git a/website_breadcrumb/i18n/ro.po b/website_breadcrumb/i18n/ro.po new file mode 100644 index 0000000000..f8b3821ff2 --- /dev/null +++ b/website_breadcrumb/i18n/ro.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Acasa" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/ru.po b/website_breadcrumb/i18n/ru.po new file mode 100644 index 0000000000..38cccab160 --- /dev/null +++ b/website_breadcrumb/i18n/ru.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Домой" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Меню сайта" diff --git a/website_breadcrumb/i18n/sl.po b/website_breadcrumb/i18n/sl.po new file mode 100644 index 0000000000..6660615ffa --- /dev/null +++ b/website_breadcrumb/i18n/sl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Domov" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "Spletni meni" diff --git a/website_breadcrumb/i18n/sv.po b/website_breadcrumb/i18n/sv.po new file mode 100644 index 0000000000..9bce93575f --- /dev/null +++ b/website_breadcrumb/i18n/sv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "Hemma" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/i18n/zh_CN.po b/website_breadcrumb/i18n/zh_CN.po new file mode 100644 index 0000000000..49af8b5d54 --- /dev/null +++ b/website_breadcrumb/i18n/zh_CN.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_breadcrumb +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-14 03:42+0000\n" +"PO-Revision-Date: 2016-12-14 03:42+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_breadcrumb +#: model:ir.ui.view,arch_db:website_breadcrumb.breadcrumb +msgid "Home" +msgstr "首页" + +#. module: website_breadcrumb +#: model:ir.model,name:website_breadcrumb.model_website_menu +msgid "Website Menu" +msgstr "" diff --git a/website_breadcrumb/models/__init__.py b/website_breadcrumb/models/__init__.py new file mode 100644 index 0000000000..c48b7a8d2e --- /dev/null +++ b/website_breadcrumb/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). + +from . import website diff --git a/website_breadcrumb/models/website.py b/website_breadcrumb/models/website.py new file mode 100644 index 0000000000..c693661474 --- /dev/null +++ b/website_breadcrumb/models/website.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). + +from odoo import api, models + + +class WebsiteMenu(models.Model): + _inherit = "website.menu" + + @api.multi + def get_parents(self, revert=False, include_self=False): + """List current menu's parents. + + :param bool revert: + Indicates if the result must be revert before returning. + Activating this will mean that the result will be ordered from + parent to child. + + :param bool include_self: + Indicates if the current menu item must be included in the result. + + :return list: + Menu items ordered from child to parent, unless ``revert=True``. + """ + result = list() + menu = self if include_self else self.parent_id + while menu: + result.append(menu) + menu = menu.parent_id + return reversed(result) if revert else result diff --git a/website_breadcrumb/static/description/icon.png b/website_breadcrumb/static/description/icon.png new file mode 100644 index 0000000000..2612f84bf8 Binary files /dev/null and b/website_breadcrumb/static/description/icon.png differ diff --git a/website_breadcrumb/static/description/icon.svg b/website_breadcrumb/static/description/icon.svg new file mode 100644 index 0000000000..ab0e83f61d --- /dev/null +++ b/website_breadcrumb/static/description/icon.svg @@ -0,0 +1,60 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/website_breadcrumb/views/layout.xml b/website_breadcrumb/views/layout.xml new file mode 100644 index 0000000000..da6827b2f8 --- /dev/null +++ b/website_breadcrumb/views/layout.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/website_breadcrumb/views/templates.xml b/website_breadcrumb/views/templates.xml new file mode 100644 index 0000000000..907fcebe3b --- /dev/null +++ b/website_breadcrumb/views/templates.xml @@ -0,0 +1,34 @@ + + + + + + + + diff --git a/website_canonical_url/README.rst b/website_canonical_url/README.rst new file mode 100755 index 0000000000..2be0c0354a --- /dev/null +++ b/website_canonical_url/README.rst @@ -0,0 +1,51 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +===================== +Website Canoncial URL +===================== + +This module is a SEO booster that adds a HTML tag in the header that contains a +`canoncial URL `_ for the +current page, no matter what query it gets, and `rel=next and rel=prev links +`_ +wherever a pager is found. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/186/9.0 + +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 smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Contributors +------------ + +* Thomas Rehn +* Rami Alwafaie +* Jairo Llopis +* Andrei Poehlmann + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/website_canonical_url/__init__.py b/website_canonical_url/__init__.py new file mode 100755 index 0000000000..9b1d259dc3 --- /dev/null +++ b/website_canonical_url/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © initOS GmbH 2016 +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models diff --git a/website_canonical_url/__manifest__.py b/website_canonical_url/__manifest__.py new file mode 100755 index 0000000000..9214cdd268 --- /dev/null +++ b/website_canonical_url/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# © initOS GmbH 2016 +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': "Website Canoncial URL", + 'summary': "Canonical URL in Website Headers", + 'author': "initOS GmbH, Tecnativa, Odoo Community Association (OCA)", + 'website': "http://www.initos.com", + 'category': 'Website', + 'version': '10.0.1.0.0', + 'license': 'AGPL-3', + 'installable': True, + 'depends': [ + 'website', + ], + 'data': [ + 'views/templates.xml', + ], + 'demo': [ + 'demo/pages.xml', + ], +} diff --git a/website_canonical_url/demo/pages.xml b/website_canonical_url/demo/pages.xml new file mode 100755 index 0000000000..c671e3acd1 --- /dev/null +++ b/website_canonical_url/demo/pages.xml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/website_canonical_url/i18n/af.po b/website_canonical_url/i18n/af.po new file mode 100755 index 0000000000..24167d2250 --- /dev/null +++ b/website_canonical_url/i18n/af.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Afrikaans (https://www.transifex.com/oca/teams/23907/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webtuiste" diff --git a/website_canonical_url/i18n/ar.po b/website_canonical_url/i18n/ar.po new file mode 100755 index 0000000000..96f8816272 --- /dev/null +++ b/website_canonical_url/i18n/ar.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "الموقع" diff --git a/website_canonical_url/i18n/bg.po b/website_canonical_url/i18n/bg.po new file mode 100755 index 0000000000..00cc8abd01 --- /dev/null +++ b/website_canonical_url/i18n/bg.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Уебсайт" diff --git a/website_canonical_url/i18n/bs.po b/website_canonical_url/i18n/bs.po new file mode 100755 index 0000000000..cc75e78c4a --- /dev/null +++ b/website_canonical_url/i18n/bs.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Web stranica" diff --git a/website_canonical_url/i18n/ca.po b/website_canonical_url/i18n/ca.po new file mode 100755 index 0000000000..3a9699ef3d --- /dev/null +++ b/website_canonical_url/i18n/ca.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Carles Antoli , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Lloc web" diff --git a/website_canonical_url/i18n/cs.po b/website_canonical_url/i18n/cs.po new file mode 100755 index 0000000000..13da6dfdac --- /dev/null +++ b/website_canonical_url/i18n/cs.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webová stránka" diff --git a/website_canonical_url/i18n/da.po b/website_canonical_url/i18n/da.po new file mode 100755 index 0000000000..4fb780fe2a --- /dev/null +++ b/website_canonical_url/i18n/da.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Hjemmeside" diff --git a/website_canonical_url/i18n/de.po b/website_canonical_url/i18n/de.po new file mode 100755 index 0000000000..f1e20eed39 --- /dev/null +++ b/website_canonical_url/i18n/de.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Thomas A. Jaeger , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Thomas A. Jaeger , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webseite" diff --git a/website_canonical_url/i18n/el.po b/website_canonical_url/i18n/el.po new file mode 100755 index 0000000000..7f687ed83e --- /dev/null +++ b/website_canonical_url/i18n/el.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (https://www.transifex.com/oca/teams/23907/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Ιστότοπος" diff --git a/website_canonical_url/i18n/el_GR.po b/website_canonical_url/i18n/el_GR.po new file mode 100755 index 0000000000..f1718a1d26 --- /dev/null +++ b/website_canonical_url/i18n/el_GR.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Ιστότοπος" diff --git a/website_canonical_url/i18n/en_GB.po b/website_canonical_url/i18n/en_GB.po new file mode 100755 index 0000000000..f60e47ca8d --- /dev/null +++ b/website_canonical_url/i18n/en_GB.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Website" diff --git a/website_canonical_url/i18n/es.po b/website_canonical_url/i18n/es.po new file mode 100755 index 0000000000..52ccae6043 --- /dev/null +++ b/website_canonical_url/i18n/es.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio web" diff --git a/website_canonical_url/i18n/es_AR.po b/website_canonical_url/i18n/es_AR.po new file mode 100755 index 0000000000..da3e81733a --- /dev/null +++ b/website_canonical_url/i18n/es_AR.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio web" diff --git a/website_canonical_url/i18n/es_CL.po b/website_canonical_url/i18n/es_CL.po new file mode 100755 index 0000000000..1f6be37678 --- /dev/null +++ b/website_canonical_url/i18n/es_CL.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio Web" diff --git a/website_canonical_url/i18n/es_CO.po b/website_canonical_url/i18n/es_CO.po new file mode 100755 index 0000000000..5cf0977894 --- /dev/null +++ b/website_canonical_url/i18n/es_CO.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio Web" diff --git a/website_canonical_url/i18n/es_CR.po b/website_canonical_url/i18n/es_CR.po new file mode 100755 index 0000000000..80c7dcced6 --- /dev/null +++ b/website_canonical_url/i18n/es_CR.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio web" diff --git a/website_canonical_url/i18n/es_DO.po b/website_canonical_url/i18n/es_DO.po new file mode 100755 index 0000000000..2a03b83307 --- /dev/null +++ b/website_canonical_url/i18n/es_DO.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio web" diff --git a/website_canonical_url/i18n/es_EC.po b/website_canonical_url/i18n/es_EC.po new file mode 100755 index 0000000000..1a62361bfe --- /dev/null +++ b/website_canonical_url/i18n/es_EC.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio web" diff --git a/website_canonical_url/i18n/es_MX.po b/website_canonical_url/i18n/es_MX.po new file mode 100755 index 0000000000..3b375f5fdf --- /dev/null +++ b/website_canonical_url/i18n/es_MX.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio Web" diff --git a/website_canonical_url/i18n/es_PE.po b/website_canonical_url/i18n/es_PE.po new file mode 100755 index 0000000000..d3dc665c57 --- /dev/null +++ b/website_canonical_url/i18n/es_PE.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio Web" diff --git a/website_canonical_url/i18n/et.po b/website_canonical_url/i18n/et.po new file mode 100755 index 0000000000..e1f1304d62 --- /dev/null +++ b/website_canonical_url/i18n/et.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Veebileht" diff --git a/website_canonical_url/i18n/eu.po b/website_canonical_url/i18n/eu.po new file mode 100755 index 0000000000..877f51b478 --- /dev/null +++ b/website_canonical_url/i18n/eu.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webgunea" diff --git a/website_canonical_url/i18n/fa.po b/website_canonical_url/i18n/fa.po new file mode 100755 index 0000000000..0809438a13 --- /dev/null +++ b/website_canonical_url/i18n/fa.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "تارنما" diff --git a/website_canonical_url/i18n/fi.po b/website_canonical_url/i18n/fi.po new file mode 100755 index 0000000000..61f0341178 --- /dev/null +++ b/website_canonical_url/i18n/fi.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Verkkosivut" diff --git a/website_canonical_url/i18n/fr.po b/website_canonical_url/i18n/fr.po new file mode 100755 index 0000000000..7eaf99e433 --- /dev/null +++ b/website_canonical_url/i18n/fr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Loic , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Loic , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Site Internet" diff --git a/website_canonical_url/i18n/gl.po b/website_canonical_url/i18n/gl.po new file mode 100755 index 0000000000..a66aa17fab --- /dev/null +++ b/website_canonical_url/i18n/gl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sitio web" diff --git a/website_canonical_url/i18n/he.po b/website_canonical_url/i18n/he.po new file mode 100755 index 0000000000..ab078b0f7b --- /dev/null +++ b/website_canonical_url/i18n/he.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "אתר" diff --git a/website_canonical_url/i18n/hr.po b/website_canonical_url/i18n/hr.po new file mode 100755 index 0000000000..0b975be6a9 --- /dev/null +++ b/website_canonical_url/i18n/hr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Web stranice" diff --git a/website_canonical_url/i18n/hr_HR.po b/website_canonical_url/i18n/hr_HR.po new file mode 100755 index 0000000000..5256cacae7 --- /dev/null +++ b/website_canonical_url/i18n/hr_HR.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webstranice" diff --git a/website_canonical_url/i18n/hu.po b/website_canonical_url/i18n/hu.po new file mode 100755 index 0000000000..8e65a57870 --- /dev/null +++ b/website_canonical_url/i18n/hu.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Honlap" diff --git a/website_canonical_url/i18n/id.po b/website_canonical_url/i18n/id.po new file mode 100755 index 0000000000..5b409aa98a --- /dev/null +++ b/website_canonical_url/i18n/id.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Situs Web" diff --git a/website_canonical_url/i18n/it.po b/website_canonical_url/i18n/it.po new file mode 100755 index 0000000000..d2f4ca81bd --- /dev/null +++ b/website_canonical_url/i18n/it.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Paolo Valier , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Paolo Valier , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Sito" diff --git a/website_canonical_url/i18n/ja.po b/website_canonical_url/i18n/ja.po new file mode 100755 index 0000000000..29a9ba489e --- /dev/null +++ b/website_canonical_url/i18n/ja.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "ウェブサイト" diff --git a/website_canonical_url/i18n/ka.po b/website_canonical_url/i18n/ka.po new file mode 100755 index 0000000000..5c236f8d7d --- /dev/null +++ b/website_canonical_url/i18n/ka.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Georgian (https://www.transifex.com/oca/teams/23907/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "ვებსაიტი" diff --git a/website_canonical_url/i18n/kab.po b/website_canonical_url/i18n/kab.po new file mode 100755 index 0000000000..e5e0819b36 --- /dev/null +++ b/website_canonical_url/i18n/kab.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Kabyle (https://www.transifex.com/oca/teams/23907/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Asmel Web" diff --git a/website_canonical_url/i18n/ko.po b/website_canonical_url/i18n/ko.po new file mode 100755 index 0000000000..7e850cb701 --- /dev/null +++ b/website_canonical_url/i18n/ko.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "웹사이트" diff --git a/website_canonical_url/i18n/lt.po b/website_canonical_url/i18n/lt.po new file mode 100755 index 0000000000..9b55c04583 --- /dev/null +++ b/website_canonical_url/i18n/lt.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Tinklapis" diff --git a/website_canonical_url/i18n/lv.po b/website_canonical_url/i18n/lv.po new file mode 100755 index 0000000000..63522ca1d8 --- /dev/null +++ b/website_canonical_url/i18n/lv.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Tīkla vietne" diff --git a/website_canonical_url/i18n/mk.po b/website_canonical_url/i18n/mk.po new file mode 100755 index 0000000000..ed9931bb6d --- /dev/null +++ b/website_canonical_url/i18n/mk.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Вебсајт" diff --git a/website_canonical_url/i18n/mn.po b/website_canonical_url/i18n/mn.po new file mode 100755 index 0000000000..9f9a270c8b --- /dev/null +++ b/website_canonical_url/i18n/mn.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Вэбсайт" diff --git a/website_canonical_url/i18n/nb.po b/website_canonical_url/i18n/nb.po new file mode 100755 index 0000000000..78da455e03 --- /dev/null +++ b/website_canonical_url/i18n/nb.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Nettsted" diff --git a/website_canonical_url/i18n/nl.po b/website_canonical_url/i18n/nl.po new file mode 100755 index 0000000000..645e36d9f0 --- /dev/null +++ b/website_canonical_url/i18n/nl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Website" diff --git a/website_canonical_url/i18n/pl.po b/website_canonical_url/i18n/pl.po new file mode 100755 index 0000000000..43dbf77835 --- /dev/null +++ b/website_canonical_url/i18n/pl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Strona WWW" diff --git a/website_canonical_url/i18n/pt_BR.po b/website_canonical_url/i18n/pt_BR.po new file mode 100755 index 0000000000..e980ff5549 --- /dev/null +++ b/website_canonical_url/i18n/pt_BR.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# danimaribeiro , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: danimaribeiro , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Website" diff --git a/website_canonical_url/i18n/ru.po b/website_canonical_url/i18n/ru.po new file mode 100755 index 0000000000..530c7d701d --- /dev/null +++ b/website_canonical_url/i18n/ru.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Mikhail - , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Mikhail - , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Сайт" diff --git a/website_canonical_url/i18n/sk.po b/website_canonical_url/i18n/sk.po new file mode 100755 index 0000000000..f1eda97aec --- /dev/null +++ b/website_canonical_url/i18n/sk.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webová stránka" diff --git a/website_canonical_url/i18n/sl.po b/website_canonical_url/i18n/sl.po new file mode 100755 index 0000000000..7ed6c03192 --- /dev/null +++ b/website_canonical_url/i18n/sl.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-07 01:09+0000\n" +"PO-Revision-Date: 2016-07-07 01:09+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Spletna stran" diff --git a/website_canonical_url/i18n/sr.po b/website_canonical_url/i18n/sr.po new file mode 100755 index 0000000000..1afb4faf0e --- /dev/null +++ b/website_canonical_url/i18n/sr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Web stranica" diff --git a/website_canonical_url/i18n/sr@latin.po b/website_canonical_url/i18n/sr@latin.po new file mode 100755 index 0000000000..a0abc98d60 --- /dev/null +++ b/website_canonical_url/i18n/sr@latin.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Internet stranica" diff --git a/website_canonical_url/i18n/sv.po b/website_canonical_url/i18n/sv.po new file mode 100755 index 0000000000..eff589965d --- /dev/null +++ b/website_canonical_url/i18n/sv.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Webbplats" diff --git a/website_canonical_url/i18n/th.po b/website_canonical_url/i18n/th.po new file mode 100755 index 0000000000..61255a5168 --- /dev/null +++ b/website_canonical_url/i18n/th.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "เว็บไซต์" diff --git a/website_canonical_url/i18n/tr.po b/website_canonical_url/i18n/tr.po new file mode 100755 index 0000000000..8679435a36 --- /dev/null +++ b/website_canonical_url/i18n/tr.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# Ahmet Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: Ahmet Altinisik , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Web Sitesi" diff --git a/website_canonical_url/i18n/uk.po b/website_canonical_url/i18n/uk.po new file mode 100755 index 0000000000..37472e197f --- /dev/null +++ b/website_canonical_url/i18n/uk.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\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_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Веб-сайт" diff --git a/website_canonical_url/i18n/vi.po b/website_canonical_url/i18n/vi.po new file mode 100755 index 0000000000..e4ba72873b --- /dev/null +++ b/website_canonical_url/i18n/vi.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "Trang web" diff --git a/website_canonical_url/i18n/zh_CN.po b/website_canonical_url/i18n/zh_CN.po new file mode 100755 index 0000000000..6bc1df1bba --- /dev/null +++ b/website_canonical_url/i18n/zh_CN.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "网站" diff --git a/website_canonical_url/i18n/zh_TW.po b/website_canonical_url/i18n/zh_TW.po new file mode 100755 index 0000000000..7bff4f23b8 --- /dev/null +++ b/website_canonical_url/i18n/zh_TW.po @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_canonical_url +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 01:52+0000\n" +"PO-Revision-Date: 2016-11-25 01:52+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_canonical_url +#: model:ir.model,name:website_canonical_url.model_website +msgid "Website" +msgstr "網站" diff --git a/website_canonical_url/models/__init__.py b/website_canonical_url/models/__init__.py new file mode 100755 index 0000000000..d9657f0f86 --- /dev/null +++ b/website_canonical_url/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © initOS GmbH 2016 +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import website diff --git a/website_canonical_url/models/website.py b/website_canonical_url/models/website.py new file mode 100755 index 0000000000..d7cd3bc82f --- /dev/null +++ b/website_canonical_url/models/website.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# © initOS GmbH 2016 +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from urlparse import urlparse, urlunparse +from odoo import api, models +from odoo.http import request + + +class Website(models.Model): + _inherit = 'website' + + @api.multi + def get_canonical_url(self, req=None): + """Construct and return both root and canonical url.""" + canonical_url = None + root = None + if req is None: # pragma: no cover + req = request + if req and req.httprequest.path: + lang = self.env.lang + rel_path = req.httprequest.path + root = request.httprequest.url_root + if lang == request.website.default_lang_code: + canonical_url = root[:-1] + rel_path + else: + url_parts = urlparse(req.httprequest.path) + url_parts = list(url_parts) + # change the path of the url + url_parts[2] = lang + url_parts[2] + canonical_url = root + urlunparse(url_parts) + # Special case for rerouted requests to root path + try: + if (rel_path.startswith("/page/") and + self.menu_id.child_id[0].url == rel_path): + canonical_url = root + except: # pragma: no cover + pass + return root[:-1], canonical_url diff --git a/website_canonical_url/tests/__init__.py b/website_canonical_url/tests/__init__.py new file mode 100755 index 0000000000..1382db57d7 --- /dev/null +++ b/website_canonical_url/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_tags diff --git a/website_canonical_url/tests/test_tags.py b/website_canonical_url/tests/test_tags.py new file mode 100755 index 0000000000..20804ad97c --- /dev/null +++ b/website_canonical_url/tests/test_tags.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from lxml.html import document_fromstring +from odoo.tests.common import HttpCase + + +class UICase(HttpCase): + def setUp(self): + super(UICase, self).setUp() + self.root = 'http://' + self.xmlrpc_db._ServerProxy__host + self.url = self.root + "/page/website_canonical_url.canonical_demo" + self.get = "?ultimate_answer=42" + self.url_get = "%s%s" % (self.url, self.get) + self.url_data = self.url_open(self.url_get) + self.doc = document_fromstring(self.url_data.read()) + + def test_canonical(self): + """Canonical URL is built OK.""" + node = self.doc.xpath("/html/head/link[@rel='canonical']")[0] + self.assertEqual(node.attrib["href"], self.url) + + def test_pager_next(self): + """Next pager link is OK.""" + node = self.doc.xpath("/html/head/link[@rel='next']")[0] + self.assertEqual( + node.attrib["href"], + "%s/page/3%s" % (self.url, self.get), + ) + + def test_pager_prev(self): + """Prev pager link is OK.""" + node = self.doc.xpath("/html/head/link[@rel='prev']")[0] + self.assertEqual(node.attrib["href"], self.url_get) diff --git a/website_canonical_url/views/templates.xml b/website_canonical_url/views/templates.xml new file mode 100755 index 0000000000..bf82ea6495 --- /dev/null +++ b/website_canonical_url/views/templates.xml @@ -0,0 +1,28 @@ + + + + + + + diff --git a/website_container_fluid/README.rst b/website_container_fluid/README.rst index 099286b5e5..93f29129fc 100644 --- a/website_container_fluid/README.rst +++ b/website_container_fluid/README.rst @@ -1,5 +1,6 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 Snippet container width type chooser ==================================== @@ -29,15 +30,17 @@ To use this module, you need to: class `container` or `container-fluid`. * Select *Customize > Container width type* and choose one from there. +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/186/9.0 + 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 smashing it by providing a detailed and -welcomed feedback `here -`_. - +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 smashing it by providing a detailed and welcomed feedback. Credits ======= @@ -45,7 +48,7 @@ Credits Contributors ------------ -* Jairo Llopis +* Jairo Llopis Maintainer ---------- @@ -60,4 +63,4 @@ 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. -To contribute to this module, please visit http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/website_container_fluid/__init__.py b/website_container_fluid/__init__.py index dae354a675..e69de29bb2 100644 --- a/website_container_fluid/__init__.py +++ b/website_container_fluid/__init__.py @@ -1 +0,0 @@ -# -*- encoding: utf-8 -*- diff --git a/website_container_fluid/__manifest__.py b/website_container_fluid/__manifest__.py index df3e0ee387..e9191cea48 100644 --- a/website_container_fluid/__manifest__.py +++ b/website_container_fluid/__manifest__.py @@ -1,23 +1,26 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- +# Copyright 2016 Jairo Llopis +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { "name": "Snippet container width type chooser", "summary": "Let you choose between fixed or fluid containers", - "version": "8.0.1.0.1", + "version": "10.0.1.0.0", "category": "Website", - "license": "AGPL-3", + "license": "LGPL-3", - "website": "https://odoo-community.org/project/website-maintainers-79", - "author": "Grupo ESOC, Odoo Community Association (OCA)", + "website": "https://www.tecnativa.com", + "author": "Grupo ESOC Ingeniería de Servicios, " + "Tecnativa, " + "Odoo Community Association (OCA)", "application": False, - 'installable': False, + 'installable': True, "depends": [ "website", ], "data": [ - "views/assets.xml", - "views/snippets.xml", + "templates/snippets.xml", ], "demo": [ "demo/pages.xml", diff --git a/website_container_fluid/demo/pages.xml b/website_container_fluid/demo/pages.xml index 1e03962a22..87658324c3 100644 --- a/website_container_fluid/demo/pages.xml +++ b/website_container_fluid/demo/pages.xml @@ -1,186 +1,186 @@ - - + + - - - Container width type demo - /page/website_container_fluid.demo_page - - 50 - + + Container width type demo + /page/website_container_fluid.demo_page + + 50 + - - + diff --git a/website_container_fluid/i18n/bg.po b/website_container_fluid/i18n/bg.po new file mode 100644 index 0000000000..1a00d9b429 --- /dev/null +++ b/website_container_fluid/i18n/bg.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - голяма снимка." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "" diff --git a/website_container_fluid/i18n/de.po b/website_container_fluid/i18n/de.po new file mode 100644 index 0000000000..f004a0d994 --- /dev/null +++ b/website_container_fluid/i18n/de.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "Eine knackige Kopfzeile" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "Eine kurze Erläuterung einer großartigen" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" +"Passen Sie diese drei Spalten an Ihre Bedürfnisse an. Zum Duplzieren, " +"Löschen oder Verschieben von Spalten, wählen Sie die Spalte und verwenden " +"die oberen Symbole für Ihre Aktion." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "Immer 100% des verfügbaren Platzes" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" +"Wählen Sie ein lebhaftes Bild und schreiben einen inspirierenden Absatz " +"dazu. Er muss nicht lang sein, aber er sollte Ihr Bild bestärken." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Uns kontaktieren »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "Art der Containerbreite" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "Demo der Containerbreitenart" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "Feature eins" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "Feature drei" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "Feature zwei" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "Erstes Feature" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "Fix, basierend auf Bildschirmbreite" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "Fluid" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Mehr als 500 erfolgreiche Projekte" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "Odoo - Beispiel 1 in drei Spalten" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "Odoo - Beispiel 2 in drei Spalten" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "Odoo - Beispiel 3 in drei Spalten" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "Odoo CMS - Galleriebeispiel" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - Ein großes Bild" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Unsere Kundenreferenzen" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Responsive" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "Zweites Feature" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "Sagen Sie was der Wert ist für" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "Dies sind responsive Container" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "Sie haben eine, von der Bildschirmgröße abhängige, feste Breite" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "Drittes Feature" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" +"Um eine vierte Spalte hinzuzufügen, verringern Sie die Breite dieser drei " +"Spalten mittels des rechten Icons im jeweiligen Block. Dann duplizieren Sie " +"eine Spalte zur Anlage einer neuen als Kopie." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Schreiben Sie, was der Kunden wohl wissen möchte," + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "Kunde für dieses Feature." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "Feature in klaren Worten." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "nicht, was Sie zeigen möchten." diff --git a/website_container_fluid/i18n/el_GR.po b/website_container_fluid/i18n/el_GR.po new file mode 100644 index 0000000000..276624160d --- /dev/null +++ b/website_container_fluid/i18n/el_GR.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "Μια μικρή εξήγηση αυτής της μεγάλης" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Επικοινωνήστε μαζί μας »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "Χαρακτηριστικό 1" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "Χαρακτηριστικό 3" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "Χαρακτηριστικό 2" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "Πρώτο χαρακτηριστικό" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Περισσότερα από 500 επιτυχημένα έργα" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Οι αναφορές των πελατών μας" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Ανταποκριτικό" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "Δεύτερο χαρακτηριστικό" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "Τρίτο Χαρακτηριστικό" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Γράψτε ό,τι θα ήθελε να γνωρίζει ο πελάτης σας," + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "πελάτης για αυτό το χαρακτηριστικό." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "χαρακτηριστικό, με απλά λόγια." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "και όχι ότι θέλετε να δείξετε" diff --git a/website_container_fluid/i18n/es.po b/website_container_fluid/i18n/es.po new file mode 100644 index 0000000000..a5fef4007c --- /dev/null +++ b/website_container_fluid/i18n/es.po @@ -0,0 +1,209 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +# Pedro M. Baeza , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: Pedro M. Baeza , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "Un pequeño subtítulo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "Un titular impactante" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "Una pequeña explicación de lo grande" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" +"Adapte esas tres columnas según sus necesidades. Para duplicar, borrar o " +"mover columnas, seleccione la comlumna y utilice los iconos superiores." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "Siempre el 100% del espacio disponible" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" +"Escoja una imagen vibrante y escriba un párrafo inspirador sobre ello. No " +"tiene que ser largo, pero debe reforzar su imagen." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Contáctenos »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "Tipo de ancho del contenedor" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "Demo del tipo de ancho de contenedor" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" +"Borre la imagen de arriba o reemplácela con otra que ilustre su mensaje. " +"Pulse en la imagen para cambiar su estilo de redondeo de esquina." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "Característica uno" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "Característica tres" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "Característica dos" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "Primera característica" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "Fijo, según el tamaño de la pantalla" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "Fluido" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Más de 500 proyectos exitosos" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "Odoo - Ejemplo 1 para tres columnas" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "Odoo - Ejemplo 2 para tres columnas" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "Odoo - Ejemplo 3 para tres columnas" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "CMS Odoo - Galería ejemplo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "CMS Odoo - una imagen grande" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Referencias de nuestros clientes" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Responsivo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "Segunda característica" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "Diga cuál es el valor para" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "Éstos son contenedores responsivos" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "Tienen un ancho fijo dependiendo del tamaño de la pantalla" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "Tercera característica" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" +"Para añadir una cuarta columna, reduzca el tamaño de las otras tres usando " +"el icono a la derecha de cada bloque. Entonces, duplique una de las columnas" +" para crear una nueva como copia." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Escriba lo que el cliente querría conocer," + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "cliente para esta característica." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "característica, en palabras llanas." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "no lo que usted quiere mostrar." diff --git a/website_container_fluid/i18n/fr.po b/website_container_fluid/i18n/fr.po new file mode 100644 index 0000000000..54477127ae --- /dev/null +++ b/website_container_fluid/i18n/fr.po @@ -0,0 +1,203 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +# Pascal ZIMMERMANN , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 04:21+0000\n" +"PO-Revision-Date: 2017-02-25 04:21+0000\n" +"Last-Translator: Pascal ZIMMERMANN , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "Fonctionnalitée 1" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "Fonctionnalitée 3" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "Fonctionnalitée 2" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "Première fonctionnalitée " + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "Fluide" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Plus de 500 projets réussis" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "Odoo - Exemple 1 avec 3 colonnes" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "Odoo - Exemple 2 avec 3 colonnes" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "Odoo - Exemple 3 avec 3 colonnes" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "Odoo CMS - Exemple de gallerie" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - une grande image" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Nos références clients" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Flexible" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "Seconde fonctionnalitée" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "Dites moi quelle est la valeur pour le" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "Ils ont une largeur fixe en fonction de la taille de l'écran" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "Troisième caractéristique" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" +"Pour ajouter une quatrième colonne, réduisez la taille de ces trois colonnes" +" à l'aide de l'icône à droite de chaque bloc. Ensuite, dupliquer l'une des " +"colonnes pour en créer une nouvelle." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Ecrivez ce que le client souhaiterait savoir" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "" diff --git a/website_container_fluid/i18n/it.po b/website_container_fluid/i18n/it.po new file mode 100644 index 0000000000..dbbaa8efae --- /dev/null +++ b/website_container_fluid/i18n/it.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "Un titolo incisivo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "Un breve spiegazione" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "Sempre il 100% dello spazio disponibile" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Contattaci »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "Tipo di larghezza del contenitore" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "Demo tipo di larghezza del contenitore" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "Caratteristica Uno" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "Caratteristica Tre" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "Caratteristica Due" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "Prima Caratteristica" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "Fissa, basata sulla dimensione dello schermo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "Fluida" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Più di 500 progetti conclusi con successo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "Odoo - Esempio 1 per tre colonne" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "Odoo - Esempio 2 per tre colonne" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "Odoo - Esempio 3 per tre colonne" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "Odoo CMS - Esempio Galleria" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - un'immagine grande" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Le nostre referenze" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Responsive" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "Seconda Caratteristica" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "Questi sono container responsive" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "Hanno una larghezza fissa in base alla dimensione dello schermo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "Terza Caratteristica" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Scrivi ciò che il cliente vorrebbe sapere," + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "" diff --git a/website_container_fluid/i18n/pt_BR.po b/website_container_fluid/i18n/pt_BR.po new file mode 100644 index 0000000000..db87e6c832 --- /dev/null +++ b/website_container_fluid/i18n/pt_BR.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "Uma pequena explanação por que isso é maravilhoso" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" +"Adapte estas três colunas para adaptar as suas necessidades. Para duplicar, " +"deletar ou mover colunas, seleciona a coluna e use os icones do topo para " +"executar as ações." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "Sempre 100% do espaço disponível" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" +"Escolha uma imagem vibrante e escreva um paragrafo inspirador. Não precisa " +"ser longo mas deve reinforçar sua imagem" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Contate nos »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "Tipo de largura do container" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "Fixo, baseado no tamanho da tela" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "Fluido" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Mais de 500 projetos com sucesso" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "Odoo CMS - Galeria de exemplo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - Uma imagem grande" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Nossas referências de clientes" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Responsivo" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "Nos conte o valor de" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "Estes são containers responsivos" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "Eles tem um tamanho fixo dependendo do tamanho da tela" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Escreva o que os consumidores gostariam de saber." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "cliente para esta funcionalidade." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "funcionalidade, em palavras claras." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "Não o que você quer mostrar." diff --git a/website_container_fluid/i18n/ru.po b/website_container_fluid/i18n/ru.po new file mode 100644 index 0000000000..0edc0c3e28 --- /dev/null +++ b/website_container_fluid/i18n/ru.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Свяжитесь с нами »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "" diff --git a/website_container_fluid/i18n/sl.po b/website_container_fluid/i18n/sl.po new file mode 100644 index 0000000000..cd6e92680c --- /dev/null +++ b/website_container_fluid/i18n/sl.po @@ -0,0 +1,207 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_container_fluid +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-05 16:29+0000\n" +"PO-Revision-Date: 2017-01-05 16:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Small Subtitle" +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A Punchy Headline" +msgstr "Udaren naslov" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "A small explanation of this great" +msgstr "Kratka obrazložitev" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Adapt these three columns to fit you design need. To duplicate, delete or " +"move columns, select the column and use the top icons to perform your " +"action." +msgstr "" +"Prilagodite te tri stolpce po lastnih potrebah. Za podvajanje, brisanje ali " +"premikanje stolpcev izberite stolpec in uporabite gornje ikone za izvedbo " +"dejanj." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Always 100% of available space" +msgstr "Vedno 100% razpoložljivega prostora" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Choose a vibrant image and write an inspiring paragraph about it. It does " +"not have to be long, but it should reinforce your image." +msgstr "" +"Izberite živahno sliko in napišite navdahnjen odstavek o njej. Ni potrebno, " +"da je dolg, a mora podpreti sliko." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Contact us »" +msgstr "Povežite se z nami »" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Container width type" +msgstr "Tip širine kontejnerja" + +#. module: website_container_fluid +#: model:website.menu,name:website_container_fluid.demo_page_link +msgid "Container width type demo" +msgstr "Demonstracija tipa širine kontejnerja" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"Delete the above image or replace it with a picture that illustrates your " +"message. Click on the picture to change it's rounded corner style." +msgstr "" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature One" +msgstr "Lastnost ena" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Three" +msgstr "Lastnost tri" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Feature Two" +msgstr "Lastnost dva" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "First Feature" +msgstr "Prva lastnost" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fixed, based on screen size" +msgstr "Stalna, glede na velikost zaslona" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Fluid" +msgstr "Tekoče" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "More than 500 successful projects" +msgstr "Več kot 500 uspešnih projektov" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 1 for three columns" +msgstr "Odoo - vzorec 1 za tri stolpce" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 2 for three columns" +msgstr "Odoo - vzorec 2 za tri stolpce" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo - Sample 3 for three columns" +msgstr "Odoo - vzorec 3 za tri stolpce" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - Gallery sample" +msgstr "Odoo CMS - vzorec galerije" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Odoo CMS - a big picture" +msgstr "Odoo CMS - velika slika" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Our Customer References" +msgstr "Naše reference" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.snippet_options +msgid "Responsive" +msgstr "Odzivna" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Second Feature" +msgstr "Druga lastnost" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Tell what's the value for the" +msgstr "Opišite vrednost" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "These are responsive containers" +msgstr "Odzivni kontejnerji" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "They have a fixed width depending on the screen size" +msgstr "Imajo stalno širino glede na velikost zaslona" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Third Feature" +msgstr "Tretja lastnost" + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "" +"To add a fourth column, reduce the size of these three columns using the " +"right icon of each block. Then, duplicate one of the column to create a new " +"one as a copy." +msgstr "" +"Za dodajanje četrtega stolpca, zmanjšajte velikost teh treh stolpcev z " +"uporabo desne ikone na vsakem bloku. Nato podvojite enega od stolpcev, da " +"ustvarite novega." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "Write what the customer would like to know," +msgstr "Zapišite tisto, kar bi kupec rad izvedel," + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "customer for this feature." +msgstr "lastnosti za kupca." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "feature, in clear words." +msgstr "lastnosti v jasnih besedah." + +#. module: website_container_fluid +#: model:ir.ui.view,arch_db:website_container_fluid.demo_page +msgid "not what you want to show." +msgstr "kar ne želite prikazati." diff --git a/website_container_fluid/static/src/css/styles.css b/website_container_fluid/static/src/css/styles.css deleted file mode 100644 index 2ffffe083d..0000000000 --- a/website_container_fluid/static/src/css/styles.css +++ /dev/null @@ -1,4 +0,0 @@ -.btn-group > div.oe_options { - float: none; } - -/*# sourceMappingURL=styles.css.map */ diff --git a/website_container_fluid/static/src/css/styles.sass b/website_container_fluid/static/src/css/styles.sass deleted file mode 100644 index d64e1d7b5d..0000000000 --- a/website_container_fluid/static/src/css/styles.sass +++ /dev/null @@ -1,4 +0,0 @@ -// Fix glitch where the "Customize" dropdown gets out of the button group, -// as seen in https://github.com/OCA/website/pull/58#issuecomment-131109826 -.btn-group > div.oe_options - float: none diff --git a/website_container_fluid/templates/snippets.xml b/website_container_fluid/templates/snippets.xml new file mode 100644 index 0000000000..2cba1b310d --- /dev/null +++ b/website_container_fluid/templates/snippets.xml @@ -0,0 +1,29 @@ + + + + + + + diff --git a/website_container_fluid/views/assets.xml b/website_container_fluid/views/assets.xml deleted file mode 100644 index 9a977c4c5d..0000000000 --- a/website_container_fluid/views/assets.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - diff --git a/website_container_fluid/views/snippets.xml b/website_container_fluid/views/snippets.xml deleted file mode 100644 index 4404b72701..0000000000 --- a/website_container_fluid/views/snippets.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - diff --git a/website_event_register_free/README.rst b/website_event_register_free/README.rst deleted file mode 100644 index 30880369b1..0000000000 --- a/website_event_register_free/README.rst +++ /dev/null @@ -1,42 +0,0 @@ -Register for free website events -================================ - -This module allows users to register for free events. Without this module, you'd have to install website_event_sale that has a lot of possibly unnecessary dependencies, define tickets for 0 euros and still 'sell' them to users, resulting in sale orders with zero amount and generally a misleading user experience. - -Usage -===== - -After installation, a registration link will show up for published events with free seats. If you happen to have website_event_sale installed, this link will only show if there are no tickets defined for the event. - -Known issues / Roadmap -====================== - -* it would be nice if we could define tickets with price zero and free registration then asks which of the free tickets we want to take. - -Credits -======= - -Contributors ------------- - -* Holger Brunn -* Pedro M. Baeza -* Daniel Gómez Zurita - -Addon icon ----------- - -* Courtesy of https://creativecommons.org and the original event module - -Maintainer ----------- - -.. image:: http://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: http://odoo-community.org - -This module is maintained by the OCA. - -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. - -To contribute to this module, please visit http://odoo-community.org. diff --git a/website_event_register_free/__init__.py b/website_event_register_free/__init__.py deleted file mode 100644 index 942014dc44..0000000000 --- a/website_event_register_free/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from . import model -from . import controllers diff --git a/website_event_register_free/__manifest__.py b/website_event_register_free/__manifest__.py deleted file mode 100644 index 21f9b0f61d..0000000000 --- a/website_event_register_free/__manifest__.py +++ /dev/null @@ -1,46 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -{ - "name": "Register for free events", - "version": "8.0.1.0.0", - "author": "Therp BV," - "Serv. Tecnol. Avanzados - Pedro M. Baeza," - "Antiun Ingeniería S.L.," - "Odoo Community Association (OCA)", - "license": "AGPL-3", - "category": "Website", - "summary": "Avoid shopping chart when registering for free events", - "depends": [ - 'website', - 'website_event', - ], - "data": [ - 'view/templates.xml', - ], - "test": [ - ], - "auto_install": False, - 'installable': False, - "application": False, - "external_dependencies": { - 'python': [], - }, -} diff --git a/website_event_register_free/controllers/__init__.py b/website_event_register_free/controllers/__init__.py deleted file mode 100644 index 2b772521c8..0000000000 --- a/website_event_register_free/controllers/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from . import website_event diff --git a/website_event_register_free/controllers/website_event.py b/website_event_register_free/controllers/website_event.py deleted file mode 100644 index 0d1893e64d..0000000000 --- a/website_event_register_free/controllers/website_event.py +++ /dev/null @@ -1,74 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import http -from openerp.addons.website_event.controllers.main import website_event - - -class WebsiteEvent(website_event): - def _validate(self, name, post, force_check=False): - if name in post or force_check: - if name == 'name' and not post.get('name', '').strip(): - return False - if name == 'email' and not post.get('email', '').strip(): - return False - if name == 'tickets' and ( - not post.get('tickets', '').isdigit() or - int(post.get('tickets')) <= 0): - return False - return True - - @http.route(['/event//register/register_free'], - type='http', auth="public", website=True) - def event_register_free(self, event, **post): - def validate(name, force_check=False): - return self._validate(name, post, force_check=force_check) - - reg_obj = http.request.env['event.registration'] - registration_vals = {} - if (http.request.env.ref('base.public_user') != - http.request.env.user and - validate('tickets', force_check=True)): - # if logged in, use that info - registration_vals = reg_obj._prepare_registration( - event, post, http.request.env.user.id, - partner=http.request.env.user.partner_id) - if all(map(lambda f: validate(f, force_check=True), - ['name', 'email', 'tickets'])): - # otherwise, create a simple registration - registration_vals = reg_obj._prepare_registration( - event, post, http.request.env.user.id) - if registration_vals: - registration = reg_obj.sudo().create(registration_vals) - if registration.partner_id: - registration._onchange_partner() - registration.registration_open() - return http.request.render( - 'website_event_register_free.partner_register_confirm', - {'registration': registration}) - values = { - 'event': event, - 'range': range, - 'tickets': post.get('tickets', 1), - 'validate': validate, - 'post': post, - } - return http.request.render( - 'website_event_register_free.partner_register_form', values) diff --git a/website_event_register_free/i18n/es.po b/website_event_register_free/i18n/es.po deleted file mode 100644 index 86fc4d224e..0000000000 --- a/website_event_register_free/i18n/es.po +++ /dev/null @@ -1,93 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_event_register_free -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-21 13:24+0000\n" -"PO-Revision-Date: 2015-05-25 11:36+0100\n" -"Last-Translator: Sergio Teruel \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" -"Language: es\n" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Email" -msgstr "Correo electrónico" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Free" -msgstr "Libre" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "No seats available" -msgstr "No hay más plazas disponibles." - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Phone" -msgstr "Teléfono" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -#: view:website:website_event_register_free.partner_register_form -msgid "Quantity" -msgstr "Cantidad" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Register" -msgstr "Registro" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Register Now" -msgstr "Registrar ahora" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Review the amount of tickets to register" -msgstr "Revise la cantidad de tickets" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "Thank you" -msgstr "Gracias" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Ticket Type" -msgstr "Tipo de ticket" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your Details" -msgstr "Tus detalles" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your Name" -msgstr "Su nombre" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your company / organisation" -msgstr "Empresa / organización" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "Your registration for" -msgstr "¡Su registro para" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "succeeded!" -msgstr "ha sido satisfactorio!" diff --git a/website_event_register_free/i18n/nl.po b/website_event_register_free/i18n/nl.po deleted file mode 100644 index f2e14a2f40..0000000000 --- a/website_event_register_free/i18n/nl.po +++ /dev/null @@ -1,93 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_event_register_free -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-21 13:24+0000\n" -"PO-Revision-Date: 2015-01-21 13:05+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Email" -msgstr "E-mail" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Free" -msgstr "Gratis" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "No seats available" -msgstr "Geen plaatsen beschikbaar" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Phone" -msgstr "Telefoon" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -#: view:website:website_event_register_free.partner_register_form -msgid "Quantity" -msgstr "Aantal" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Register" -msgstr "Inschrijven" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Register Now" -msgstr "Nu inschrijven" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Review the amount of tickets to register" -msgstr "Aantal te reserveren plaatsen controleren" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "Thank you" -msgstr "Bedankt" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Ticket Type" -msgstr "Soort ticket" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your Details" -msgstr "Je gegevens" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your Name" -msgstr "Je naam" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your company / organisation" -msgstr "Je bedrijf / organisatie" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "Your registration for" -msgstr "Je registratie voor" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "succeeded!" -msgstr "is geslaagd!" diff --git a/website_event_register_free/i18n/website_event_register_free.pot b/website_event_register_free/i18n/website_event_register_free.pot deleted file mode 100644 index 1c3fb4a637..0000000000 --- a/website_event_register_free/i18n/website_event_register_free.pot +++ /dev/null @@ -1,93 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_event_register_free -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-01-21 13:24+0000\n" -"PO-Revision-Date: 2015-01-21 13:24+0000\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_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Email" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Free" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "No seats available" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Phone" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -#: view:website:website_event_register_free.partner_register_form -msgid "Quantity" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Register" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Register Now" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Review the amount of tickets to register" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "Thank you" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event.event_description_full -msgid "Ticket Type" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your Details" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your Name" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_form -msgid "Your company / organisation" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "Your registration for" -msgstr "" - -#. module: website_event_register_free -#: view:website:website_event_register_free.partner_register_confirm -msgid "succeeded!" -msgstr "" - diff --git a/website_event_register_free/model/__init__.py b/website_event_register_free/model/__init__.py deleted file mode 100644 index eaed4f1936..0000000000 --- a/website_event_register_free/model/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from . import ir_ui_view -from . import event_registration diff --git a/website_event_register_free/model/event_registration.py b/website_event_register_free/model/event_registration.py deleted file mode 100644 index f04e180570..0000000000 --- a/website_event_register_free/model/event_registration.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import models, fields - - -class EventRegistration(models.Model): - _inherit = 'event.registration' - - def _prepare_registration(self, event, post, user_id, partner=False): - return { - 'origin': 'Website', - 'nb_register': int(post['tickets']), - 'event_id': event.id, - 'date_open': fields.Datetime.now(), - 'email': post.get('email') or partner and partner.email, - 'phone': post.get('phone') or partner and partner.phone, - 'name': post.get('name') or partner and partner.name, - 'user_id': user_id, - 'partner_id': partner and partner.id, - } diff --git a/website_event_register_free/model/ir_ui_view.py b/website_event_register_free/model/ir_ui_view.py deleted file mode 100644 index f8a914d167..0000000000 --- a/website_event_register_free/model/ir_ui_view.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import models, api - - -class IrUiView(models.Model): - _inherit = 'ir.ui.view' - - @api.cr_uid_ids_context - def render(self, cr, uid, id_or_xml_id, values=None, engine='ir.qweb', - context=None): - """inject functions we need in our template""" - if id_or_xml_id == "website_event.event_description_full": - values['hasattr'] = hasattr - return super(IrUiView, self).render( - cr, uid, id_or_xml_id, values=values, engine=engine, - context=context) diff --git a/website_event_register_free/static/description/icon.png b/website_event_register_free/static/description/icon.png deleted file mode 100644 index f4d4b8c24b..0000000000 Binary files a/website_event_register_free/static/description/icon.png and /dev/null differ diff --git a/website_event_register_free/static/src/css/website_event_register_free.css b/website_event_register_free/static/src/css/website_event_register_free.css deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/website_event_register_free/view/templates.xml b/website_event_register_free/view/templates.xml deleted file mode 100644 index 9b8a45145a..0000000000 --- a/website_event_register_free/view/templates.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - diff --git a/website_event_register_free_with_sale/README.rst b/website_event_register_free_with_sale/README.rst deleted file mode 100644 index e5ecdf9099..0000000000 --- a/website_event_register_free_with_sale/README.rst +++ /dev/null @@ -1,60 +0,0 @@ -Register for free website events - Sale extension -================================================= - -Extension for module *website_event_register_free* that allows to combine -both kind of registrations: free and paid. - -Installation -============ - -This module will be auto-installed when *website_event_register_free* and -*website_event_sale* are both installed. - -Usage -===== - -You have two options for events: - -* Don't put any type of ticket, so the event will be considered as free, and - the registration screen of *website_event_register_free* module will appear. - *Warning:* This doesn't work for now due to a bug in Odoo that doesn't allow - to store max seats available. -* Define ticket types, but let one or some of the tickets with price 0. When - you go to normal registration screen, the tickets with price will be added - to shopping cart, and the priceless tickets will be automatically registered. - If there are no free tickets selected, then normal checkout screen will - appeared. - -Known issues / Roadmap -====================== -* Hide on checkout page the fields that are not needed for free events. - -Credits -======= - -Contributors ------------- - -* Pedro M. Baeza - -Icon ----- - -* Courtesy of https://creativecommons.org -* Original event module -* Original sale module - -Maintainer ----------- - -.. image:: http://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: http://odoo-community.org - -This module is maintained by the OCA. - -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. - -To contribute to this module, please visit http://odoo-community.org. diff --git a/website_event_register_free_with_sale/__init__.py b/website_event_register_free_with_sale/__init__.py deleted file mode 100644 index 345a5162b7..0000000000 --- a/website_event_register_free_with_sale/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from . import controllers -from . import models diff --git a/website_event_register_free_with_sale/__manifest__.py b/website_event_register_free_with_sale/__manifest__.py deleted file mode 100644 index 1138f0b31f..0000000000 --- a/website_event_register_free_with_sale/__manifest__.py +++ /dev/null @@ -1,36 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -{ - "name": "Register for free events - Sale extension", - "version": "8.0.1.0.0", - "author": "Serv. Tecnol. Avanzados - Pedro M. Baeza, " - "Antiun Ingeniería S.L.,", - "Odoo Community Association (OCA)" - "license": "AGPL-3", - "category": "Website", - "summary": "Combine free and paid tickets on events", - "depends": [ - 'website_event_register_free', - 'website_event_sale', - ], - "auto_install": True, - 'installable': False, -} diff --git a/website_event_register_free_with_sale/controllers/__init__.py b/website_event_register_free_with_sale/controllers/__init__.py deleted file mode 100644 index a1a6a3134d..0000000000 --- a/website_event_register_free_with_sale/controllers/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from . import website_event -from . import website_sale diff --git a/website_event_register_free_with_sale/controllers/website_event.py b/website_event_register_free_with_sale/controllers/website_event.py deleted file mode 100644 index a7b0ef126c..0000000000 --- a/website_event_register_free_with_sale/controllers/website_event.py +++ /dev/null @@ -1,56 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import http -from openerp.http import request -from openerp.addons.website_event_sale.controllers.main import website_event - - -class WebsiteEvent(website_event): - @http.route(['/event/cart/update'], type='http', auth="public", - methods=['POST'], website=True) - def cart_update(self, **post): - has_paid_tickets = False - post['free_tickets'] = 0 - for key, value in post.items(): - qty = int(value or "0") - ticket_words = key.split("-") - ticket_id = (ticket_words[0] == 'ticket' and - int(ticket_words[1]) or None) - if not qty or not ticket_id: - continue - ticket = request.env['event.event.ticket'].sudo().browse(ticket_id) - if not ticket.price: - # Accumulate possible multiple free tickets - post['free_tickets'] = ( - str(int(post['free_tickets']) + qty)) - else: - has_paid_tickets = True - # Add to shopping cart the rest of the items - order = request.website.sale_get_order(force_create=1) - order.with_context(event_ticket_id=ticket.id)._cart_update( - product_id=ticket.product_id.id, add_qty=qty) - if not post['free_tickets'] and not has_paid_tickets: - return request.redirect("/event/%s" % post['event_id']) - request.session.update({ - 'free_tickets': post['free_tickets'], - 'event_id': post['event_id'], - }) - return request.redirect("/shop/checkout") diff --git a/website_event_register_free_with_sale/controllers/website_sale.py b/website_event_register_free_with_sale/controllers/website_sale.py deleted file mode 100644 index 4305ce1daf..0000000000 --- a/website_event_register_free_with_sale/controllers/website_sale.py +++ /dev/null @@ -1,93 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import http -from openerp.http import request -from openerp.addons.website_sale.controllers.main import website_sale -from openerp.addons.website_event_register_free.controllers.website_event \ - import WebsiteEvent - - -class WebsiteSale(website_sale): - mandatory_free_registration_fields = ["name", "phone", "email"] - # TODO: Not used yet - optional_free_registration_fields = ["street", "city", "country_id", "zip"] - - def checkout_form_validate_free(self, data): - errors = dict() - if request.session.get('free_tickets'): - # Make validation for free tickets - for field_name in self.mandatory_free_registration_fields: - if not data.get(field_name, '').strip(): - errors[field_name] = 'missing' - elif not WebsiteEvent()._validate(field_name, data, True): - # Patch for current free registration implementation - errors[field_name] = 'error' - return errors - - @http.route(['/shop/checkout'], type='http', auth="public", website=True) - def checkout(self, **post): - order = request.website.sale_get_order(force_create=0) - has_paid_tickets = bool(order.order_line) - if request.session.get('free_tickets') and not has_paid_tickets: - values = self.checkout_values(data={'shipping_id': -1}) - return request.website.render("website_sale.checkout", values) - else: - return super(WebsiteSale, self).checkout(**post) - - @http.route(['/shop/confirm_order'], type='http', auth="public", - website=True) - def confirm_order(self, **post): - if (request.session.get('free_tickets') is None and - request.session.get('has_paid_tickets') is None): - # Handle call of this method from regular shop - return super(WebsiteSale, self).confirm_order(**post) - if request.session.get('free_tickets'): - values = self.checkout_values(post) - values['error'] = self.checkout_form_validate_free(post) - if values["error"]: - return request.website.render("website_sale.checkout", values) - post['tickets'] = request.session['free_tickets'] - event = request.env['event.event'].browse( - request.session['event_id']) - if (http.request.env.ref('base.public_user') != - http.request.env.user): - partner = http.request.env.user.partner_id - else: - partner = False - # Use same hook as without website_sale - reg_obj = http.request.env['event.registration'] - registration_vals = reg_obj._prepare_registration( - event, post, http.request.env.user.id, partner=partner) - registration = reg_obj.sudo().create(registration_vals) - if registration.partner_id: - registration._onchange_partner() - registration.registration_open() - order = request.website.sale_get_order(force_create=0) - has_paid_tickets = bool(order.order_line) - if has_paid_tickets: - return super(WebsiteSale, self).confirm_order(**post) - elif request.session.get('free_tickets'): - request.session['free_tickets'] = 0 - return http.request.render( - 'website_event_register_free.partner_register_confirm', - {'registration': registration}) - else: - return http.request.redirect('/event') diff --git a/website_event_register_free_with_sale/i18n/fr.po b/website_event_register_free_with_sale/i18n/fr.po deleted file mode 100644 index 647883e852..0000000000 --- a/website_event_register_free_with_sale/i18n/fr.po +++ /dev/null @@ -1,23 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * website_event_register_free_with_sale -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: website (8.0)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-03 23:14+0000\n" -"PO-Revision-Date: 2015-09-25 08:28+0000\n" -"Last-Translator: <>\n" -"Language-Team: French (http://www.transifex.com/oca/OCA-website-8-0/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: website_event_register_free_with_sale -#: model:ir.model,name:website_event_register_free_with_sale.model_website -msgid "Website" -msgstr "Site Internet" diff --git a/website_event_register_free_with_sale/models/__init__.py b/website_event_register_free_with_sale/models/__init__.py deleted file mode 100644 index d44f2b55bb..0000000000 --- a/website_event_register_free_with_sale/models/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from . import website diff --git a/website_event_register_free_with_sale/models/website.py b/website_event_register_free_with_sale/models/website.py deleted file mode 100644 index 8716fc0949..0000000000 --- a/website_event_register_free_with_sale/models/website.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2015 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) -# Pedro M. Baeza -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from openerp import models, api - - -class Website(models.Model): - _inherit = 'website' - - @api.multi - def sale_get_order(self, force_create=False, code=None, - update_pricelist=None, context=None): - res = super(Website, self).sale_get_order( - force_create=force_create, code=code, - update_pricelist=update_pricelist, context=context) - return res if res is not None else self.env['sale.order'] diff --git a/website_event_register_free_with_sale/static/description/icon.png b/website_event_register_free_with_sale/static/description/icon.png deleted file mode 100644 index 37167e0c67..0000000000 Binary files a/website_event_register_free_with_sale/static/description/icon.png and /dev/null differ diff --git a/website_seo_redirection/i18n/zh_CN.po b/website_seo_redirection/i18n/zh_CN.po index 0fe9b9f480..d3571a4d6f 100644 --- a/website_seo_redirection/i18n/zh_CN.po +++ b/website_seo_redirection/i18n/zh_CN.po @@ -3,14 +3,14 @@ # * website_seo_redirection # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-29 03:55+0000\n" -"PO-Revision-Date: 2016-11-29 03:55+0000\n" -"Last-Translator: OCA Transbot , 2016\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: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,14 +40,14 @@ msgid "/seo/sample" msgstr "" #. module: website_seo_redirection -#. odoo-web +#. openerp-web #: code:addons/website_seo_redirection/static/src/xml/website_seo.xml:13 #, python-format msgid "BEWARE!" msgstr "" #. module: website_seo_redirection -#. odoo-web +#. openerp-web #: code:addons/website_seo_redirection/static/src/xml/website_seo.xml:8 #, python-format msgid "Change the URL" @@ -69,7 +69,7 @@ msgid "Destination URL" msgstr "" #. module: website_seo_redirection -#. odoo-web +#. openerp-web #: code:addons/website_seo_redirection/static/src/xml/website_seo.xml:22 #, python-format msgid "Destination URL:" @@ -92,7 +92,7 @@ msgid "Duplicated redirection." msgstr "" #. module: website_seo_redirection -#. odoo-web +#. openerp-web #: code:addons/website_seo_redirection/static/src/xml/website_seo.xml:33 #, python-format msgid "E.g.: /some/good-url" @@ -109,7 +109,7 @@ msgid "ID" msgstr "ID" #. module: website_seo_redirection -#. odoo-web +#. openerp-web #: code:addons/website_seo_redirection/static/src/xml/website_seo.xml:16 #, python-format msgid "" @@ -219,7 +219,7 @@ msgid "The original URL for this page is" msgstr "" #. module: website_seo_redirection -#. odoo-web +#. openerp-web #: code:addons/website_seo_redirection/static/src/xml/website_seo.xml:33 #, python-format msgid "URL without domain name, all lower case, hyphenated." @@ -228,7 +228,7 @@ msgstr "" #. module: website_seo_redirection #: model:ir.model,name:website_seo_redirection.model_website msgid "Website" -msgstr "" +msgstr "网站" #. module: website_seo_redirection #: model:ir.ui.view,arch_db:website_seo_redirection.sample_page diff --git a/website_seo_redirection/static/src/js/website_seo.js b/website_seo_redirection/static/src/js/website_seo.js index 338324c486..cc05617941 100644 --- a/website_seo_redirection/static/src/js/website_seo.js +++ b/website_seo_redirection/static/src/js/website_seo.js @@ -5,8 +5,8 @@ odoo.define('website_seo_redirection.website_seo', function(require) { var ajax = require("web.ajax"); var base = require("web_editor.base"); var core = require("web.core"); + var Model = require('web.Model'); var seo = require("website.seo"); - var session = require("web.session"); ajax.loadXML( '/website_seo_redirection/static/src/xml/website_seo.xml', @@ -31,7 +31,7 @@ odoo.define('website_seo_redirection.website_seo', function(require) { if (newurl === document.location.pathname) { return $.Deferred().resolve("no-reload"); } - return session.model("website.seo.redirection").call( + return new Model("website.seo.redirection").call( "smart_add", [document.location.pathname, newurl, base.get_context()] ); diff --git a/website_seo_redirection/tests/test_ui.py b/website_seo_redirection/tests/test_ui.py index eeea9a2344..31b4e798af 100644 --- a/website_seo_redirection/tests/test_ui.py +++ b/website_seo_redirection/tests/test_ui.py @@ -17,5 +17,4 @@ def test_admin_tour_en_US(self): "/en_US", "%s.run('website_seo_redirection')" % tour, "%s.tours.website_seo_redirection.ready" % tour, - login="admin", ) diff --git a/website_snippet_country_dropdown/__init__.py b/website_snippet_country_dropdown/__init__.py index e69de29bb2..3d02a7ef30 100644 --- a/website_snippet_country_dropdown/__init__.py +++ b/website_snippet_country_dropdown/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Jairo Llopis +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +from . import tests diff --git a/website_snippet_country_dropdown/__manifest__.py b/website_snippet_country_dropdown/__manifest__.py index a59d0f7e4e..408b538c7d 100644 --- a/website_snippet_country_dropdown/__manifest__.py +++ b/website_snippet_country_dropdown/__manifest__.py @@ -6,14 +6,14 @@ { "name": "Website Snippet Country Code Dropdown", "summary": "Allow to select country in a dropdown", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "category": "Website", "website": "http://www.tecnativa.com", "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "LGPL-3", "application": False, - 'installable': False, + 'installable': True, "depends": [ "website", ], @@ -24,5 +24,6 @@ ], "demo": [ "demo/pages.xml", + "demo/assets.xml", ], } diff --git a/website_snippet_country_dropdown/demo/assets.xml b/website_snippet_country_dropdown/demo/assets.xml new file mode 100644 index 0000000000..2eb2270bb5 --- /dev/null +++ b/website_snippet_country_dropdown/demo/assets.xml @@ -0,0 +1,18 @@ + + + + +