From ad5801675af953393b923620ea0a0c5869dc6462 Mon Sep 17 00:00:00 2001 From: Antonio Espinosa Date: Wed, 10 Jun 2015 19:52:00 +0200 Subject: [PATCH 01/51] [ADD] website_legal_page addon - Fix review comments - Icon changed - Bug tracker added - [IMP] README and OCA as author [FIX] Space at the end of a traslation line [FIX] mailto links in default legal pages is malformed --- website_legal_page/README.rst | 97 +++++ website_legal_page/__init__.py | 3 + website_legal_page/__openerp__.py | 42 +++ website_legal_page/i18n/es.po | 338 ++++++++++++++++++ .../i18n/website_legal_page.pot | 280 +++++++++++++++ .../static/description/icon.png | Bin 0 -> 2507 bytes .../johnny-automatic-scales-of-justice.svg | 94 +++++ website_legal_page/views/website_legal.xml | 89 +++++ website_legal_page/views/website_privacy.xml | 210 +++++++++++ website_legal_page/views/website_terms.xml | 215 +++++++++++ 10 files changed, 1368 insertions(+) create mode 100644 website_legal_page/README.rst create mode 100644 website_legal_page/__init__.py create mode 100644 website_legal_page/__openerp__.py create mode 100644 website_legal_page/i18n/es.po create mode 100644 website_legal_page/i18n/website_legal_page.pot create mode 100644 website_legal_page/static/description/icon.png create mode 100644 website_legal_page/static/description/johnny-automatic-scales-of-justice.svg create mode 100644 website_legal_page/views/website_legal.xml create mode 100644 website_legal_page/views/website_privacy.xml create mode 100644 website_legal_page/views/website_terms.xml diff --git a/website_legal_page/README.rst b/website_legal_page/README.rst new file mode 100644 index 0000000000..daee72f00e --- /dev/null +++ b/website_legal_page/README.rst @@ -0,0 +1,97 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Website legal page +================== + +This module was written to provide common legal pages needed in any website: + +* **Legal advice**: Website propietary and disclaimers +* **Terms of use**: Which services website offers and legal restrictions +applied to them +* **Privacy policy**: Company privacy policy applied to user data collected +through the website + + +Usage +===== + +Website editor can change easily any text of these pages using website builder + + +Known issues / Roadmap +====================== + +Disclaimer +---------- + +These legal pages are templates. + +**You must edit the templates and adapt them to your particular case** + +The provided agreements are for **informational purposes only** and do not +constitute legal advice. + +Authors, contributors and maintainer are not law firms and are not providing legal advice. +All information (including agreements, forms and documents) available in this +addon are **provided without any warranty**, express or implied, including as to +their legal effect and completeness. The information **should be used as a +guide** and modified to meet your own individual needs and the laws of your +state. Your use of any information or forms is at your own risk. + +Authors, contributors, maintainer and any of its employees, contractors, or +attorneys who participated in development of this addon **expressly disclaim any +warranty**: they are not creating or entering into any Attorney-Client +relationship by providing information to you. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + + +Credits +======= + +Templates +--------- + +Templates are based on legal templates publicy provided by [termsfeed.com](https://termsfeed.com): + +* [Privacy policy](https://media.termsfeed.com/pdf/privacy-policy-template.pdf) +* [Terms of use](https://media.termsfeed.com/pdf/terms-of-use-template.pdf) + +Icon +---- + +Icon based on ```johnny-automatic-scales-of-justice.svg``` from +[Openclipart](https://openclipart.org/detail/26849/scales-of-justice) + +Thanks to [johnny_automatic](https://openclipart.org/user-detail/johnny_automatic) + + +Contributors +------------ + +* Rafael Blasco +* Antonio Espinosa +* Igor Pastor + +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 http://odoo-community.org. diff --git a/website_legal_page/__init__.py b/website_legal_page/__init__.py new file mode 100644 index 0000000000..4eb8bc8fd8 --- /dev/null +++ b/website_legal_page/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ +############################################################################## diff --git a/website_legal_page/__openerp__.py b/website_legal_page/__openerp__.py new file mode 100644 index 0000000000..2b1e015556 --- /dev/null +++ b/website_legal_page/__openerp__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# Python source code encoding : https://www.python.org/dev/peps/pep-0263/ +############################################################################## +# +# OpenERP, Odoo Source Management Solution +# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com) +# Antonio Espinosa +# +# 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': "Website legal page", + 'category': 'Website', + 'version': '1.0', + 'depends': [ + 'website', + ], + 'data': [ + 'views/website_legal.xml', + 'views/website_privacy.xml', + 'views/website_terms.xml', + ], + 'author': 'Antiun Ingeniería S.L., ' + 'Odoo Community Association (OCA)', + 'website': 'http://www.antiun.com', + 'license': 'AGPL-3', + 'demo': [], + 'test': [], + 'installable': True, +} diff --git a/website_legal_page/i18n/es.po b/website_legal_page/i18n/es.po new file mode 100644 index 0000000000..535ce175d4 --- /dev/null +++ b/website_legal_page/i18n/es.po @@ -0,0 +1,338 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-16 11:37+0000\n" +"PO-Revision-Date: 2015-06-16 11:37+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_legal_page +#: view:website:website.privacy +msgid "(\"us\", \"we\", or \"our\") operates" +msgstr "(\nos\",\"nosotros"\"o \"nuestro\") opera" + +#. module: website_legal_page +#: view:website:website.terms +msgid "(\"us\", \"we\", or \"our\")." +msgstr "(\"nos\", \"nosotros\", or \"nuestro\")." + +#. module: website_legal_page +#: view:website:website.privacy +msgid "(the \"Site\"). This page informs you of our policies regarding the collection, use and disclosure\n" +" of Personal Information we receive from users of the Site." +msgstr "la \"pagina\". Esta página le informa de nuestras políticas en cuanto" +" a la colección, uso y revelación de la Información personal que" +" recibimos de los usuarios del Sitio." + +#. module: website_legal_page +#: view:website:website.terms +msgid ",\n" +" without regard to its conflict of law provisions." +msgstr "sin tener en cuenta su conflicto de disposiciones legales." + +#. module: website_legal_page +#: view:website:website.terms +msgid "All provisions of the Terms which by their nature should survive termination shall survive\n" +" termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity\n" +" and limitations of liability." +msgstr "Todas las disposiciones de los términos que por su naturaleza deberían" +" sobrevivir a la terminación sobrevivirán a la terminación, incluyendo" +" las disposiciones de propiedad, renuncias de garantía, indemnización" +" y limitaciones de responsabilidad." + +#. module: website_legal_page +#: view:website:website.terms +msgid "By accessing or using the Service you agree to be bound by these Terms. If you disagree with\n" +" any part of the terms then you may not access the Service." +msgstr "Al acceder o utilizar el servicio usted acepta estar obligado por estos" +" términos. Si está en desacuerdo con cualquier parte de los términos" +" entonces no podrá acceder al servicio." + +#. module: website_legal_page +#: view:website:website.terms +msgid "Changes" +msgstr "Cambios" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Changes To This Privacy Policy" +msgstr "Cambios en la Política de Privacidad" + +#. module: website_legal_page +#: view:website:website.privacy +#: view:website:website.terms +msgid "Contact Us" +msgstr "Contáctenos" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Cookies" +msgstr "Cookies" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Cookies are files with small amount of data, which may include an anonymous unique identifier.\n" +" Cookies are sent to your browser from a web site and stored on your computer's hard drive." +msgstr "Las cookies son archivos con una pequeña cantidad de datos que pueden" +" incluir un identificador único anónimo. Las cookies son enviadas a su" +" navegador por un sitio web y almacenadas en el disco duro de su ordenador." + +#. module: website_legal_page +#: view:website:website.legal +#: view:website:website.privacy +#: view:website:website.terms +msgid "Email address:" +msgstr "Dirección de correo electrónico:" + +#. module: website_legal_page +#: view:website:website.legal +#: view:website:website.privacy +#: view:website:website.terms +msgid "Fax number:" +msgstr "Fax:" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Governing Law" +msgstr "Jurisdicción" + +#. module: website_legal_page +#: view:website:website.privacy +#: view:website:website.terms +msgid "If you have any questions about these Terms, please contact us." +msgstr "Si tiene alguna pregunta acerca de estos Términos, por favor contacte con nosotros." + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Information Collection And Use" +msgstr "Infomación acerca de la recopilación y uso" + +#. module: website_legal_page +#: view:website:website.layout +#: view:website:website.legal +msgid "Legal advice" +msgstr "Aviso Legal" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Like many site operators, we collect information that your browser sends whenever you visit our\n" +" Site (\"Log Data\"). This Log Data may include information such as your computer's Internet\n" +" Protocol (\"IP\") address, browser type, browser version, the pages of our Site that you visit, the\n" +" time and date of your visit, the time spent on those pages and other statistics." +msgstr "Como muchos otros operadores, coleccionamos la información que su" +" navegador envía siempre que visita nuestro Sitio web (\"Datos del Usuario\")." +" Estos Datos del Usuario pueden incluir información como el Protocolo" +" de Internet de su ordenador (\"IP\"), tipo de navegador, versión del" +" navegador, las páginas de nuestro Sitio web que visita, el tiempo y" +" la fecha de su visita, el tiempo pasado en aquellas páginas y otras estadísticas." + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Like many sites, we use \"cookies\" to collect information. You can instruct your browser to refuse\n" +" all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you\n" +" may not be able to use some portions of our Site." +msgstr "Como muchos sitios, usamos cookies para coleccionar la información." +" Puede configurar su navegador para rechazar todas las cookies o" +" indicar cuando una cookie está siendo enviada. Sin embargo, si no" +" acepta cookies, no podra ser capaz de usar algunas partes de nuestro" +" Sitio web." + +#. module: website_legal_page +#: view:website:website.terms +msgid "Links To Other Web Sites" +msgstr "Enlaces a Otras Paginas Web" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Log Data" +msgstr "Datos de registro" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Our Service may contain links to third­party web sites or services that are not owned or controlled\n" +" by ​us. We has no control over, and assumes no responsibility for, the\n" +" content, privacy policies, or practices of any third party web sites or services. You further\n" +" acknowledge and agree that ​we shall not be responsible or liable,\n" +" directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection\n" +" with use of or reliance on any such content, goods or services available on or through any such\n" +" web sites or services." +msgstr "Nuestro servicio puede contener enlaces a sitios web de terceros o" +" servicios que no son propiedad o controlados por nosotros. No tenemos" +" el control sobre ellos y no asumimos ninguna responsabilidad por el" +" contenido, políticas de privacidad o prácticas de sitios web de" +" terceros o servicios. Usted reconoce y acepta que nosotros no seremos" +" responsables, directa o indirectamente, por cualquier daño o pérdida" +" causada o supuestamente causada por o en relación con el uso o" +" confianza de cualquier contenido, bienes o servicios disponibles en o" +" a través de dichos sitios o servicios." + +#. module: website_legal_page +#: view:website:website.terms +msgid "Our failure to enforce any right or provision of these Terms will not be considered a waiver of\n" +" those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the\n" +" remaining provisions of these Terms will remain in effect. These Terms constitute the entire\n" +" agreement between us regarding our Service, and supersede and replace any prior agreements\n" +" we might have between us regarding the Service." +msgstr "Nuestra incapacidad para hacer cumplir cualquier derecho o disposición" +" de estos términos no se considerará una renuncia a dichos derechos." +" Si cualquier disposición de estos Términos es inválida o inaplicable" +" por un tribunal, el resto de las disposiciones de estos Términos" +" seguirá en vigor. Estos Términos y condiciones constituyen el acuerdo" +" completo entre nosotros con respecto a nuestro Servicio, y reemplazan" +" cualquier acuerdo previo que podríamos tener entre nosotros con" +" respecto al servicio." + +#. module: website_legal_page +#: view:website:website.legal +#: view:website:website.privacy +#: view:website:website.terms +msgid "Phone number:" +msgstr "Número de teléfono:" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the" +msgstr "Por favor lea atentamente estos Términos de Uso antes de continuar" + +#. module: website_legal_page +#: view:website:website.layout +#: view:website:website.privacy +msgid "Privacy policy" +msgstr "Política de Privacidad" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Security" +msgstr "Seguridad" + +#. module: website_legal_page +#: view:website:website.legal +msgid "VAT number:" +msgstr "NIF:" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Termination" +msgstr "Cancelación" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Terms of Use (\"Terms\")" +msgstr "Términos de Uso" + +#. module: website_legal_page +#: view:website:website.layout +#: view:website:website.terms +msgid "Terms of use" +msgstr "Términos de Uso" + +#. module: website_legal_page +#: view:website:website.legal +msgid "The owner of this website is" +msgstr "El propietario de esta web es" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "The security of your Personal Information is important to us, but remember that no method of\n" +" transmission over the Internet, or method of electronic storage, is 100% secure. While we strive to\n" +" use commercially acceptable means to protect your Personal Information, we cannot guarantee\n" +" its absolute security." +msgstr "La seguridad de su Información personal es importante para nosotros," +" pero recuerde que ningún método de la transmisión sobre Internet o" +" método de almacenaje electrónico, es 100% seguro. Si bien nos" +" esforzamos por utilizar medios comercialmente aceptables para" +" proteger su información personal, no podemos garantizar su seguridad." + +#. module: website_legal_page +#: view:website:website.terms +msgid "These Terms shall be governed and construed in accordance with the laws of ​" +msgstr "Estos Términos se regirán e interpretarán de conformidad con las leyes de " + +#. module: website_legal_page +#: view:website:website.terms +msgid "We may terminate or suspend access to our Service immediately, without prior notice or liability,\n" +" for any reason whatsoever, including without limitation if you breach the Terms." +msgstr "Podemos cancelar o suspender el acceso a nuestro servicio" +" inmediatamente sin previo aviso o responsabilidad por cualquier" +" razón sin limitación en caso de incumplimiento de los términos." + +#. module: website_legal_page +#: view:website:website.privacy +msgid "We may update this Privacy Policy from time to time. We will notify\n" +" you of any changes by posting the new Privacy Policy on the Site. You are advised to review this\n" +" Privacy Policy periodically for any changes." +msgstr "Podemos actualizar cambios en esta Política de privacidad de vez" +" en cuando. Le notificaremos cualquier cambio fijando la nueva" +" Política de privacidad en el Sitio. Le aconsejamos examinar esta" +" Política de privacidad periódicamente para cualquier cambio." + +#. module: website_legal_page +#: view:website:website.terms +msgid "We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a\n" +" revision is material we will try to provide at least ​30 days notice prior to any new\n" +" terms taking effect. What constitutes a material change will be determined at our sole discretion.\n" +" By continuing to access or use our Service after those revisions become effective, you agree to\n" +" be bound by the revised terms. If you do not agree to the new terms, please stop using the\n" +" Service." +msgstr "Reservamos el derecho, a nuestra propia discreción, de modificar o" +" sustituir estos Términos en cualquier momento. Si una revisión es" +" material trataremos de proporcionar aviso de al menos ​30 días antes" +" de que cualquier nuevo término entrase en vigor. Lo que constituye" +" un cambio material será determinado a nuestra propia discreción." +" Si sigue teniendo acceso o usando nuestro Servicio después de que" +" aquellas revisiones entren en vigor, consiente en ser ligado por los" +" términos revisados. Si no está de acuerdo con los nuevos términos," +" por favor deje de usar el Servicio" + +#. module: website_legal_page +#: view:website:website.terms +msgid "We strongly advise you to read the terms and conditions and privacy policies of any third­party\n" +" web sites or services that you visit." +msgstr "Aconsejamos que lea los términos y condiciones y políticas de" +" privacidad de los sitios web de terceros o servicios que usted visite." + +#. module: website_legal_page +#: view:website:website.privacy +msgid "We use your Personal Information only for providing and improving the Site. By using the Site,\n" +" you agree to the collection and use of information in accordance with this policy." +msgstr "Usamos su Informacion Personal solamente para proporcionar y mejorar" +" el sitio. Al utilizar el Sitio, usted acepta la recopilación y uso de" +" información de acuerdo con esta política." + +#. module: website_legal_page +#: view:website:website.privacy +msgid "While using our Site, we may ask you to provide us with certain personally identifiable information\n" +" that can be used to contact or identify you. Personally identifiable information may include, but is\n" +" not limited to your name (\"Personal Information\")." +msgstr "Durante el uso de nuestro sitio podremos pedirle que nos proporcione" +" cierta información que puede ser usada para contactar o identificarle." +" La información podria incluir, pero no está limitada a su nombre" +" (Información Personal)." + +#. module: website_legal_page +#: view:website:website.legal +msgid "You can contact us at:" +msgstr "Puede contactar con nosotros en:" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Your access to and use of the Service is conditioned on your acceptance of and compliance with\n" +" these Terms. These Terms apply to all visitors, users and others who access or use the Service." +msgstr "El acceso y uso del servicio está condicionado a la aceptación y" +" cumplimiento de estos términos. Estos términos se aplican a todos los" +" visitantes, usuarios y otros que accedan o usen el servicio." + +#. module: website_legal_page +#: view:website:website.terms +msgid "website (the \"Service\") operated by ​" +msgstr "sitio web (el \"Servicio\") operado por " + diff --git a/website_legal_page/i18n/website_legal_page.pot b/website_legal_page/i18n/website_legal_page.pot new file mode 100644 index 0000000000..34e3f37701 --- /dev/null +++ b/website_legal_page/i18n/website_legal_page.pot @@ -0,0 +1,280 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-16 11:37+0000\n" +"PO-Revision-Date: 2015-06-16 11:37+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_legal_page +#: view:website:website.privacy +msgid "(\"us\", \"we\", or \"our\") operates" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "(\"us\", \"we\", or \"our\")." +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "(the \"Site\"). This page informs you of our policies regarding the collection, use and disclosure\n" +" of Personal Information we receive from users of the Site." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid ",\n" +" without regard to its conflict of law provisions." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "All provisions of the Terms which by their nature should survive termination shall survive\n" +" termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity\n" +" and limitations of liability." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "By accessing or using the Service you agree to be bound by these Terms. If you disagree with\n" +" any part of the terms then you may not access the Service." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Changes" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Changes To This Privacy Policy" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +#: view:website:website.terms +msgid "Contact Us" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Cookies" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Cookies are files with small amount of data, which may include an anonymous unique identifier.\n" +" Cookies are sent to your browser from a web site and stored on your computer's hard drive." +msgstr "" + +#. module: website_legal_page +#: view:website:website.legal +#: view:website:website.privacy +#: view:website:website.terms +msgid "Email address:" +msgstr "" + +#. module: website_legal_page +#: view:website:website.legal +#: view:website:website.privacy +#: view:website:website.terms +msgid "Fax number:" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Governing Law" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +#: view:website:website.terms +msgid "If you have any questions about these Terms, please contact us." +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Information Collection And Use" +msgstr "" + +#. module: website_legal_page +#: view:website:website.layout +#: view:website:website.legal +msgid "Legal advice" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Like many site operators, we collect information that your browser sends whenever you visit our\n" +" Site (\"Log Data\"). This Log Data may include information such as your computer's Internet\n" +" Protocol (\"IP\") address, browser type, browser version, the pages of our Site that you visit, the\n" +" time and date of your visit, the time spent on those pages and other statistics." +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Like many sites, we use \"cookies\" to collect information. You can instruct your browser to refuse\n" +" all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you\n" +" may not be able to use some portions of our Site." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Links To Other Web Sites" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Log Data" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Our Service may contain links to third­party web sites or services that are not owned or controlled\n" +" by ​us. We has no control over, and assumes no responsibility for, the\n" +" content, privacy policies, or practices of any third party web sites or services. You further\n" +" acknowledge and agree that ​we shall not be responsible or liable,\n" +" directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection\n" +" with use of or reliance on any such content, goods or services available on or through any such\n" +" web sites or services." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Our failure to enforce any right or provision of these Terms will not be considered a waiver of\n" +" those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the\n" +" remaining provisions of these Terms will remain in effect. These Terms constitute the entire\n" +" agreement between us regarding our Service, and supersede and replace any prior agreements\n" +" we might have between us regarding the Service." +msgstr "" + +#. module: website_legal_page +#: view:website:website.legal +#: view:website:website.privacy +#: view:website:website.terms +msgid "Phone number:" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully before using the" +msgstr "" + +#. module: website_legal_page +#: view:website:website.layout +#: view:website:website.privacy +msgid "Privacy policy" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "Security" +msgstr "" + +#. module: website_legal_page +#: view:website:website.legal +msgid "VAT number:" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Termination" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Terms of Use (\"Terms\")" +msgstr "" + +#. module: website_legal_page +#: view:website:website.layout +#: view:website:website.terms +msgid "Terms of use" +msgstr "" + +#. module: website_legal_page +#: view:website:website.legal +msgid "The owner of this website is" +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "The security of your Personal Information is important to us, but remember that no method of\n" +" transmission over the Internet, or method of electronic storage, is 100% secure. While we strive to\n" +" use commercially acceptable means to protect your Personal Information, we cannot guarantee\n" +" its absolute security." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "These Terms shall be governed and construed in accordance with the laws of ​" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "We may terminate or suspend access to our Service immediately, without prior notice or liability,\n" +" for any reason whatsoever, including without limitation if you breach the Terms." +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "We may update this Privacy Policy from time to time. We will notify\n" +" you of any changes by posting the new Privacy Policy on the Site. You are advised to review this\n" +" Privacy Policy periodically for any changes." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a\n" +" revision is material we will try to provide at least ​30 days notice prior to any new\n" +" terms taking effect. What constitutes a material change will be determined at our sole discretion.\n" +" By continuing to access or use our Service after those revisions become effective, you agree to\n" +" be bound by the revised terms. If you do not agree to the new terms, please stop using the\n" +" Service." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "We strongly advise you to read the terms and conditions and privacy policies of any third­party\n" +" web sites or services that you visit." +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "We use your Personal Information only for providing and improving the Site. By using the Site,\n" +" you agree to the collection and use of information in accordance with this policy." +msgstr "" + +#. module: website_legal_page +#: view:website:website.privacy +msgid "While using our Site, we may ask you to provide us with certain personally identifiable information\n" +" that can be used to contact or identify you. Personally identifiable information may include, but is\n" +" not limited to your name (\"Personal Information\")." +msgstr "" + +#. module: website_legal_page +#: view:website:website.legal +msgid "You can contact us at:" +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "Your access to and use of the Service is conditioned on your acceptance of and compliance with\n" +" these Terms. These Terms apply to all visitors, users and others who access or use the Service." +msgstr "" + +#. module: website_legal_page +#: view:website:website.terms +msgid "website (the \"Service\") operated by ​" +msgstr "" + diff --git a/website_legal_page/static/description/icon.png b/website_legal_page/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8c40e2317b7ea015b8d7c14f59f67bfa08d92f2e GIT binary patch literal 2507 zcmV;+2{iVJP)H~JL+#4L?ys+lSS9QF`GK0X z-rm-Tik?_loqNuBmX!^Fhe2s@EUBltbY_@F77yp&*tWI7c|vc5fL|8tXyrrZK;b!z_O~?oj~To zc<|`oGgNdrUV$Y=VMImt$KL1l)r4U=Fl;tJ8SdiRy~5CWf4|+bXqk9s z<8x;AvvDiQd0BXAvH1M{%A;Swlv0~?J?qbpCn897dlHh9xpYWByK+}| zcAe6!cj%OTp`OT-m5=rJ`hb6xr>@LZNp&R~T)T&}H&R27oz}Q%NJuwDYGr|;@uY^^Ti?oM`5-}MdPbnn3z1mGmT#a_S zTwoGMJY=-B(qmkGjAk?^2?!J!2#sx6XKxT+H#V1&x~ibdXMv$$SXLV_HE3X@@#pY> zi@a|`8(umW&eh}}DGsi++Q@`!b8~coi^k>S-P(_FTu*p`YpH2yuj0(T5F#owELcK8 zYL;T5adozahJ{;Tg-JZbwzn%GXo!`} zI5S;?dbKkzPV4IOR#sM=m%l6~RDVAQ(uFkBj5vFMeE`uf+` z*Wuye=jiC!+1b_A)$8l)&(F`&($ePU=HK4l<>lmQX=&i#;3OSR+S}Ul^78oj_}kmt z`T6?x_V#jea`g1{{r>*@`~0n~t=!z)_4W4t{{Q^^{r~^};_L;#2d9Y_EG010qNS#tmY3ljhU3ljkVnw%H_000McNliru-v$>47#m;% z+3WxS21H3jK~z}7?UxNq)K(n8$r3l0EpCZ!(PeI$j5(RhG8SI&YZ#qIqXuVWB%nr7 z#DET69AHF+#3^PtWGLHkQJf=A!Z%D&`4CajfsjLl^PtClv`2fr)E>QqcU0QF_70S< zqX(ERi@z(cz1O?n{a^q8zVf`hCL9q8N`ayhAtX4KQrp`rmNlA5e3ECs%*40z} zjUT2=_(04pz`awcg78GPvwn$XA zC>LIP@L*a8-rU;Cs&%al$CuChQ)2JlyLowe#bt+zii!@lw0x&ncn#r)l^-}9&m6W; zqzNmZcNcNu#NFIGcXD&<%Zkg&-u6IvEgvxr&;G?gSX!-5X3cuPXU&O#xVVEiyyH^h zQd05)yrZLwJP_tzy_%n2$do1Sh>!oERUH*ID`8D;TwK6`J0C} zajRgqbs~XY>~z=#>By#a89frx1{Hy+nmg1)GmDv3j2Ty9G;3xsR>u%L(d}7;y%1$X zD+mtf(4pQrPShv2=&|Tggixy$wf(7;jNZRb$*c>>oVq8|5t11a5*V17 z85p?Xc&7MLT3W>Xg^`hw?;eTql?xjHFq*J=@fRysty+oxRxM8G{PN{s-`HQ1N@Ld^ z0{{k}-Cq+qf8n+jTQ@E`@`qAkMq*+{;$naQxpOlP*xw2bjo2AlTKY+8(y>yIb`F4T z+g@9-{Iliz6$>>vIT;xl{{FAd^^t@ZFJ27ZnRGhh^o3U+~Y!ktN_lT(i!OI^2a6VQTlH7AdR%{Ve6X?6{8F}mM z1*wx4ytgR^z)3YVVav8G+q&#z^5>IKmX$b#UR1ww=|ZV-pr#l0(Fa%7?XiOPuZ@K%4VQc&|?^_v*1PzX4FFg z=V&9^XbTS*hp3@3Ovf8p6>V@Q9MCD)c-}(r7M^E#JrpqtO@chH!mWA~l-Yy2nJ^Pndcsa7^)GL z;z$D^>_|_NW}YN@4x`N@3c(uPN5l3vdM z`j1@QjehbvWvCDg5<(k}vg!`t++p%c3XB@!@M}FV+_ALQ8(la&BYt3r5O{eG7{74j zPYo6VW!?!Ef}yyXuEu2a8mDlO(#?>^l4G~maKeS-cMlYT=P4YcabU{5o~v-&Lk8|{ zfd7PWsB&y01|!{3W4(kEk%>VOy%4?-{=35Q+!OAfToY#+_iW(SH;xHmqGS9&@ej@y VnhiZo3%&pV002ovPDHLkV1kSX+uQ&E literal 0 HcmV?d00001 diff --git a/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg b/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg new file mode 100644 index 0000000000..61b9c381f8 --- /dev/null +++ b/website_legal_page/static/description/johnny-automatic-scales-of-justice.svg @@ -0,0 +1,94 @@ + + + + + + + + +image/svg+xmlOpenclipartscales of justice2009-06-26T04:35:18https://openclipart.org/detail/26849/scales-of-justice-by-johnny_automaticjohnny_automaticjusticelawmeasurementscalessilhouetteweight diff --git a/website_legal_page/views/website_legal.xml b/website_legal_page/views/website_legal.xml new file mode 100644 index 0000000000..f47c3c9c1a --- /dev/null +++ b/website_legal_page/views/website_legal.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/website_legal_page/views/website_privacy.xml b/website_legal_page/views/website_privacy.xml new file mode 100644 index 0000000000..01e2304eab --- /dev/null +++ b/website_legal_page/views/website_privacy.xml @@ -0,0 +1,210 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/website_legal_page/views/website_terms.xml b/website_legal_page/views/website_terms.xml new file mode 100644 index 0000000000..8e4ad6c51f --- /dev/null +++ b/website_legal_page/views/website_terms.xml @@ -0,0 +1,215 @@ + + + + + + + + + + + \ No newline at end of file From 77cd76e6e2a5e0c5f9374c076e5c8ccc27d0d288 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 5 Oct 2015 07:12:20 -0400 Subject: [PATCH 02/51] OCA Transbot updated translations from Transifex --- website_legal_page/i18n/en.po | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 website_legal_page/i18n/en.po diff --git a/website_legal_page/i18n/en.po b/website_legal_page/i18n/en.po new file mode 100644 index 0000000000..3a516204be --- /dev/null +++ b/website_legal_page/i18n/en.po @@ -0,0 +1,33 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_legal_page +# +# 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: 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_legal_page +#: view:website:website.layout +msgid "Legal advice" +msgstr "Legal advice" + +#. module: website_legal_page +#: view:website:website.layout +msgid "Privacy policy" +msgstr "Privacy policy" + +#. module: website_legal_page +#: view:website:website.layout +msgid "Terms of use" +msgstr "Terms of use" From 422a06ade618411086e652233d5345a27ca9a5c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 9 Oct 2015 10:03:44 +0200 Subject: [PATCH 03/51] [UPD] prefix versions with 8.0 --- website_legal_page/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_legal_page/__openerp__.py b/website_legal_page/__openerp__.py index 2b1e015556..e875f6d46b 100644 --- a/website_legal_page/__openerp__.py +++ b/website_legal_page/__openerp__.py @@ -23,7 +23,7 @@ { 'name': "Website legal page", 'category': 'Website', - 'version': '1.0', + 'version': '8.0.1.0.0', 'depends': [ 'website', ], From bf6c7ae27d60111c25e88e7cbe869a8768549f52 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Wed, 14 Oct 2015 02:57:23 +0200 Subject: [PATCH 04/51] [MIG] Make modules uninstallable --- website_legal_page/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_legal_page/__openerp__.py b/website_legal_page/__openerp__.py index e875f6d46b..823f64b95c 100644 --- a/website_legal_page/__openerp__.py +++ b/website_legal_page/__openerp__.py @@ -38,5 +38,5 @@ 'license': 'AGPL-3', 'demo': [], 'test': [], - 'installable': True, + 'installable': False, } From 919e9c6d2633bdbffe2ccd71c44e45f45717e170 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Mon, 14 Mar 2016 17:41:08 +0100 Subject: [PATCH 05/51] [8.0][IMP][website_legal_page] Reusable templates for legal terms Many submodules from this one need the template I'm adding. Having it here allows for better reusability and avoids duplicated translation efforts. --- website_legal_page/__openerp__.py | 1 + website_legal_page/views/reusable_templates.xml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 website_legal_page/views/reusable_templates.xml diff --git a/website_legal_page/__openerp__.py b/website_legal_page/__openerp__.py index 823f64b95c..5aedf698e5 100644 --- a/website_legal_page/__openerp__.py +++ b/website_legal_page/__openerp__.py @@ -28,6 +28,7 @@ 'website', ], 'data': [ + 'views/reusable_templates.xml', 'views/website_legal.xml', 'views/website_privacy.xml', 'views/website_terms.xml', diff --git a/website_legal_page/views/reusable_templates.xml b/website_legal_page/views/reusable_templates.xml new file mode 100644 index 0000000000..8134f69078 --- /dev/null +++ b/website_legal_page/views/reusable_templates.xml @@ -0,0 +1,13 @@ + + + + + + + + + From 13be5d3c47b697aa3f1a4796908b2afd5c61b3d0 Mon Sep 17 00:00:00 2001 From: Yajo Date: Tue, 15 Mar 2016 09:51:39 +0100 Subject: [PATCH 06/51] Seems like I can only set page to True, so I won't set it. --- website_legal_page/views/reusable_templates.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_legal_page/views/reusable_templates.xml b/website_legal_page/views/reusable_templates.xml index 8134f69078..6619f87577 100644 --- a/website_legal_page/views/reusable_templates.xml +++ b/website_legal_page/views/reusable_templates.xml @@ -3,7 +3,7 @@ - - - - Legal Advice - qweb - website.advice - - + From 3d2b019f4428ebe224a12d911d6793f8844c1e0d Mon Sep 17 00:00:00 2001 From: Rodrigo Macedo Date: Tue, 3 Sep 2019 12:55:34 +0000 Subject: [PATCH 29/51] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (49 of 49 strings) Translation: website-12.0/website-12.0-website_legal_page Translate-URL: https://translation.odoo-community.org/projects/website-12-0/website-12-0-website_legal_page/pt_BR/ --- website_legal_page/i18n/pt_BR.po | 207 +++++++++++++++++++++++++++---- 1 file changed, 180 insertions(+), 27 deletions(-) diff --git a/website_legal_page/i18n/pt_BR.po b/website_legal_page/i18n/pt_BR.po index 4251570f20..87622baaa5 100644 --- a/website_legal_page/i18n/pt_BR.po +++ b/website_legal_page/i18n/pt_BR.po @@ -9,27 +9,28 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-01-27 03:46+0000\n" -"PO-Revision-Date: 2018-01-27 03:46+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\n" +"PO-Revision-Date: 2019-09-03 15:23+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.8\n" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "(\"us\", \"we\", or \"our\") operates" -msgstr "" +msgstr "(\"nós\", \"nós\" ou \"nosso\") opera" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "(\"us\", \"we\", or \"our\")." -msgstr "" +msgstr "(\"nós\", \"nós\" ou \"nosso\")." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -41,6 +42,10 @@ msgid "" " of Personal Information we " "receive from users of the Site." msgstr "" +"(o site\"). Esta página informa sobre nossas políticas em relação ao\n" +" coleta, uso e divulgação\n" +" das informações pessoais " +"que recebemos dos usuários do site." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -50,6 +55,9 @@ msgid "" " without regard to its " "conflict of law provisions." msgstr "" +",\n" +" sem levar em conta suas " +"disposições sobre conflitos de leis." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.acceptance_full @@ -73,6 +81,14 @@ msgid "" "indemnity\n" " and limitations of liability." msgstr "" +"Todas as disposições dos Termos que, por sua natureza, devem sobreviver\n" +" rescisão deve sobreviver\n" +" rescisão, incluindo, sem " +"limitação, disposições de propriedade,\n" +" isenções de garantia, " +"indenização\n" +" e limitações de " +"responsabilidade." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -83,18 +99,23 @@ msgid "" " any part of the terms then " "you may not access the Service." msgstr "" +"Ao acessar ou usar o Serviço, você concorda em ficar vinculado a estes " +"Termos.\n" +" Se você não concorda com\n" +" qualquer parte dos termos, " +"você poderá não acessar o Serviço." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Changes" -msgstr "" +msgstr "Mudanças" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "Changes To This Privacy Policy" -msgstr "" +msgstr "Alterações nesta política de privacidade" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -102,13 +123,13 @@ msgstr "" #: model_terms:website.page,arch_db:website_legal_page.privacy_page #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Contact Us" -msgstr "" +msgstr "Contate-nos" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "Cookies" -msgstr "" +msgstr "Cookies" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -121,6 +142,12 @@ msgid "" "browser from a web site and stored on your\n" " computer's hard drive." msgstr "" +"Cookies são arquivos com pequena quantidade de dados, que podem incluir uma\n" +" identificador exclusivo " +"anônimo.\n" +" Os cookies são enviados " +"para o seu navegador a partir de um site e armazenados no seu\n" +" disco rígido do computador." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.advice @@ -130,13 +157,13 @@ msgstr "" #: model_terms:website.page,arch_db:website_legal_page.privacy_page #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Email address:" -msgstr "" +msgstr "Endereço de E-mail:" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Governing Law" -msgstr "" +msgstr "Lei Governamental" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.acceptance_full @@ -150,19 +177,20 @@ msgstr "Eu aceito o" #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "If you have any questions about these Terms, please contact us." msgstr "" +"Se você tiver alguma dúvida sobre estes Termos, entre em contato conosco." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "Information Collection And Use" -msgstr "" +msgstr "Coleta e uso de informações" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.advice #: model_terms:ir.ui.view,arch_db:website_legal_page.legal_advice_link #: model_terms:website.page,arch_db:website_legal_page.advise_page msgid "Legal Advice" -msgstr "" +msgstr "Aconselhamento jurídico" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -180,6 +208,19 @@ msgid "" "the time spent on those pages and other\n" " statistics." msgstr "" +"Como muitos operadores de sites, coletamos informações que seu navegador " +"envia\n" +" sempre que você visitar " +"nosso\n" +" Site (\"Dados do Log\"). " +"Esses dados de log podem incluir informações como sua\n" +" Internet do computador\n" +" Endereço de protocolo (\"" +"IP\"), tipo de navegador, versão do navegador, as páginas de nossa\n" +" Site que você visita, o\n" +" hora e data da sua visita, " +"o tempo gasto nessas páginas e em outros\n" +" Estatísticas." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -194,18 +235,26 @@ msgid "" " may not be able to use some " "portions of our Site." msgstr "" +"Como muitos sites, usamos \"cookies\" para coletar informações. Você pode\n" +" instrua seu navegador a " +"recusar\n" +" todos os cookies ou para " +"indicar quando um cookie está sendo enviado. No entanto, se você\n" +" não aceita cookies, você\n" +" talvez não seja possível " +"usar algumas partes do nosso site." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Links To Other Web Sites" -msgstr "" +msgstr "Links para Outros Websites" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "Log Data" -msgstr "" +msgstr "Log de Dados" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -228,6 +277,23 @@ msgid "" " on or through any such\n" " web sites or services." msgstr "" +"Nosso Serviço pode conter links para sites de terceiros ou serviços que\n" +" não pertencem ou são " +"controlados\n" +" por nós. Não temos controle " +"e não assumimos nenhuma responsabilidade pelo\n" +" conteúdo, políticas de " +"privacidade ou práticas de sites de terceiros ou\n" +" Serviços. Você ainda\n" +" pode reconhecer e concordar " +"que não devemos ser responsabilizados,\n" +" direta ou indiretamente, por " +"qualquer dano ou perda causada ou supostamente\n" +" causada por ou em conexão\n" +" com o uso ou confiança em " +"qualquer conteúdo, bens ou serviços disponíveis\n" +" ou através de qualquer\n" +" sites ou serviços." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -248,6 +314,23 @@ msgid "" " we might have between us " "regarding the Service." msgstr "" +"Nossa falha em fazer cumprir qualquer direito ou disposição destes Termos " +"não será\n" +" considerado uma renúncia " +"de\n" +" esses direitos. Se qualquer " +"disposição destes Termos for considerada inválida ou\n" +" inexequível por um " +"tribunal, a\n" +" as demais disposições " +"destes Termos permanecerão em vigor. Estes Termos\n" +" constituem o todo\n" +" acordo entre nós em relação " +"ao nosso Serviço e substitua e substitua\n" +" quaisquer acordos " +"anteriores\n" +" podemos ter entre nós em " +"relação ao serviço." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.advice @@ -257,7 +340,7 @@ msgstr "" #: model_terms:website.page,arch_db:website_legal_page.privacy_page #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Phone number:" -msgstr "" +msgstr "Número de Telefone:" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -266,31 +349,33 @@ msgid "" "Please read these Terms of Use (\"Terms\", \"Terms of Use\") carefully\n" " before using the" msgstr "" +"Leia estes Termos de uso (\"Termos\", \"Termos de uso\") com atenção\n" +" antes de usar o" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_policy_link #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "Privacy Policy" -msgstr "" +msgstr "Política de Privacidade" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view #: model_terms:website.page,arch_db:website_legal_page.privacy_page msgid "Security" -msgstr "" +msgstr "Segurança" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Termination" -msgstr "" +msgstr "Conclusão" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "Terms of Use (\"Terms\")" -msgstr "" +msgstr "Termos of Uso (\"Terms\")" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -303,7 +388,7 @@ msgstr "Termos de uso" #: model_terms:ir.ui.view,arch_db:website_legal_page.advice #: model_terms:website.page,arch_db:website_legal_page.advise_page msgid "The owner of this website is" -msgstr "" +msgstr "O proprietário deste site é" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -319,6 +404,17 @@ msgid "" " we cannot guarantee\n" " its absolute security." msgstr "" +"A segurança de suas informações pessoais é importante para nós, mas\n" +" lembre-se que nenhum método " +"de\n" +" transmissão pela Internet, " +"ou método de armazenamento eletrônico, é 100%\n" +" seguro. Enquanto nos " +"esforçamos para\n" +" use meios comercialmente " +"aceitáveis para proteger suas informações pessoais,\n" +" não podemos garantir\n" +" sua segurança absoluta." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -327,12 +423,14 @@ msgid "" "These Terms shall be governed and construed in accordance with the laws\n" " of ​" msgstr "" +"Estes Termos serão regidos e interpretados de acordo com as leis\n" +" de" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.advice #: model_terms:website.page,arch_db:website_legal_page.advise_page msgid "VAT number:" -msgstr "" +msgstr "Número de IVA:" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -344,6 +442,12 @@ msgid "" "including without limitation if you breach\n" " the Terms." msgstr "" +"Podemos encerrar ou suspender o acesso ao nosso Serviço imediatamente, sem\n" +" aviso prévio ou " +"responsabilidade,\n" +" por qualquer motivo, " +"incluindo, sem limitação, se você violar\n" +" os termos." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -356,6 +460,14 @@ msgid "" " Privacy Policy periodically " "for any changes." msgstr "" +"Podemos atualizar esta Política de Privacidade periodicamente. Vamos " +"notificar\n" +" você de quaisquer " +"alterações, publicando a nova Política de Privacidade no Site. Você\n" +" é aconselhável revisar " +"este\n" +" Política de Privacidade " +"periodicamente para quaisquer alterações." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -378,6 +490,23 @@ msgid "" " please stop using the\n" " Service." msgstr "" +"Reservamo-nos o direito, a nosso critério, de modificar ou substituir esses\n" +" Termos a qualquer momento. " +"Se uma\n" +" revisão é material, " +"tentaremos fornecer pelo menos 30 dias de antecedência\n" +" antes de qualquer novo\n" +" termo entrando em vigor. O " +"que constitui uma mudança material será\n" +" determinado a nosso " +"critério.\n" +" Continuando a acessar ou " +"usar nosso Serviço depois que essas revisões se tornarem\n" +" eficazes, você concorda em\n" +" estar vinculado pelos " +"termos revisados. Se você não concorda com os novos termos,\n" +" por favor, pare de usar o\n" +" Serviço." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -388,6 +517,11 @@ msgid "" " web sites or services that " "you visit." msgstr "" +"É altamente recomendável que você leia os termos e condições e a " +"privacidade\n" +" políticas de terceiros\n" +" sites ou serviços que você " +"visita." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -399,6 +533,11 @@ msgid "" "and use of information in accordance with\n" " this policy." msgstr "" +"Usamos suas informações pessoais apenas para fornecer e melhorar o\n" +" Local. Ao usar o site,\n" +" você concorda com a coleta " +"e o uso de informações de acordo com\n" +" esta política." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.privacy_page_ir_ui_view @@ -414,12 +553,21 @@ msgid "" " not limited to your name " "(\"Personal Information\")." msgstr "" +"Ao usar nosso Site, podemos solicitar que você nos forneça certas\n" +" informação pessoalmente " +"identificável\n" +" que pode ser usado para " +"entrar em contato ou identificar você. Identificável pessoalmente\n" +" informações podem incluir, " +"mas é\n" +" não limitado ao seu nome (\"" +"Informações pessoais\")." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.advice #: model_terms:website.page,arch_db:website_legal_page.advise_page msgid "You can contact us at:" -msgstr "" +msgstr "Você pode entrar em contato conosco em:" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use @@ -431,6 +579,11 @@ msgid "" "apply to all visitors, users and others who\n" " access or use the Service." msgstr "" +"Seu acesso e uso do Serviço estão condicionados à sua aceitação\n" +" e conformidade com\n" +" estes Termos. Estes Termos " +"se aplicam a todos os visitantes, usuários e outras pessoas que\n" +" acessar ou usar o Serviço." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.acceptance_full @@ -440,7 +593,7 @@ msgstr "aviso legal" #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.acceptance_full msgid "of this website." -msgstr "deste site" +msgstr "deste site." #. module: website_legal_page #: model_terms:ir.ui.view,arch_db:website_legal_page.acceptance_full @@ -456,4 +609,4 @@ msgstr "Termos de uso" #: model_terms:ir.ui.view,arch_db:website_legal_page.terms-of-use #: model_terms:website.page,arch_db:website_legal_page.terms_page msgid "website (the \"Service\") operated by ​" -msgstr "" +msgstr "Site (o \"Serviço\") operado por" From 0a92862957f4abca8b51859e235666571c87d63b Mon Sep 17 00:00:00 2001 From: emagdalena Date: Wed, 16 Oct 2019 21:47:23 +0200 Subject: [PATCH 30/51] [13.0][MIG] website_legal_page --- website_legal_page/__manifest__.py | 32 +++++++++----------- website_legal_page/readme/CONTRIBUTORS.rst | 1 + website_legal_page/tests/test_controller.py | 8 ++--- website_legal_page/views/website_legal.xml | 2 +- website_legal_page/views/website_privacy.xml | 2 +- website_legal_page/views/website_terms.xml | 2 +- 6 files changed, 23 insertions(+), 24 deletions(-) diff --git a/website_legal_page/__manifest__.py b/website_legal_page/__manifest__.py index e2921d2783..4aa90082e2 100644 --- a/website_legal_page/__manifest__.py +++ b/website_legal_page/__manifest__.py @@ -3,22 +3,20 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { - 'name': "Website Legal Page", - 'category': 'Website', - 'version': '12.0.1.1.0', - 'depends': [ - 'website', + "name": "Website Legal Page", + "category": "Website", + "version": "13.0.1.0.0", + "depends": ["website"], + "data": [ + "views/reusable_templates.xml", + "views/website_legal.xml", + "views/website_privacy.xml", + "views/website_terms.xml", ], - 'data': [ - 'views/reusable_templates.xml', - 'views/website_legal.xml', - 'views/website_privacy.xml', - 'views/website_terms.xml', - ], - 'author': 'Tecnativa, ' - 'LasLabs, ' - 'Nicolas JEUDY, ' - 'Odoo Community Association (OCA)', - 'website': 'https://github.com/OCA/website', - 'license': 'AGPL-3', + "author": "Tecnativa, " + "LasLabs, " + "Nicolas JEUDY, " + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/website", + "license": "AGPL-3", } diff --git a/website_legal_page/readme/CONTRIBUTORS.rst b/website_legal_page/readme/CONTRIBUTORS.rst index e4f11f469d..355adeb649 100644 --- a/website_legal_page/readme/CONTRIBUTORS.rst +++ b/website_legal_page/readme/CONTRIBUTORS.rst @@ -6,3 +6,4 @@ * Nicola Malcontenti * Nicolas JEUDY * Lorenzo Battistini +* Eduardo Magdalena (C2i Change 2 improve http://www.c2i.es) diff --git a/website_legal_page/tests/test_controller.py b/website_legal_page/tests/test_controller.py index eac271a210..246059987c 100644 --- a/website_legal_page/tests/test_controller.py +++ b/website_legal_page/tests/test_controller.py @@ -13,16 +13,16 @@ def _test_page(self, page, code=200): @mute_logger("odoo.addons.website.models.ir_ui_view") def test_unknown(self): """ It should return a 404 for unknown pages. """ - self._test_page('/legal/no-page', 404) + self._test_page("/legal/no-page", 404) def test_privacy(self): """ It should return a 200 for privacy policy page. """ - self._test_page('/legal/privacy-policy') + self._test_page("/legal/privacy-policy") def test_advice(self): """ It should return a 200 for advice page. """ - self._test_page('/legal/advice') + self._test_page("/legal/advice") def test_tos(self): """ It should return a 200 for ToS page. """ - self._test_page('/legal/terms-of-use') + self._test_page("/legal/terms-of-use") diff --git a/website_legal_page/views/website_legal.xml b/website_legal_page/views/website_legal.xml index 02bb6935b2..6a5aaffdd4 100644 --- a/website_legal_page/views/website_legal.xml +++ b/website_legal_page/views/website_legal.xml @@ -2,7 +2,7 @@ -