Browse Source
Merge pull request #1508 from Tecnativa/12.0-mig-html_image_url_extractor
Merge pull request #1508 from Tecnativa/12.0-mig-html_image_url_extractor
[12.0][MIG] html_image_url_extractorpull/1511/head
Pedro M. Baeza
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
79 changed files with 2667 additions and 0 deletions
-
86html_image_url_extractor/README.rst
-
3html_image_url_extractor/__init__.py
-
25html_image_url_extractor/__manifest__.py
-
36html_image_url_extractor/i18n/am.po
-
37html_image_url_extractor/i18n/ar.po
-
36html_image_url_extractor/i18n/bg.po
-
37html_image_url_extractor/i18n/bs.po
-
24html_image_url_extractor/i18n/ca.po
-
36html_image_url_extractor/i18n/cs.po
-
25html_image_url_extractor/i18n/cs_CZ.po
-
36html_image_url_extractor/i18n/da.po
-
24html_image_url_extractor/i18n/de.po
-
37html_image_url_extractor/i18n/el_GR.po
-
37html_image_url_extractor/i18n/en_GB.po
-
24html_image_url_extractor/i18n/es.po
-
37html_image_url_extractor/i18n/es_AR.po
-
37html_image_url_extractor/i18n/es_CL.po
-
37html_image_url_extractor/i18n/es_CO.po
-
37html_image_url_extractor/i18n/es_CR.po
-
37html_image_url_extractor/i18n/es_DO.po
-
37html_image_url_extractor/i18n/es_EC.po
-
25html_image_url_extractor/i18n/es_ES.po
-
37html_image_url_extractor/i18n/es_MX.po
-
37html_image_url_extractor/i18n/es_PE.po
-
37html_image_url_extractor/i18n/es_PY.po
-
37html_image_url_extractor/i18n/es_VE.po
-
36html_image_url_extractor/i18n/et.po
-
36html_image_url_extractor/i18n/eu.po
-
36html_image_url_extractor/i18n/fa.po
-
36html_image_url_extractor/i18n/fi.po
-
36html_image_url_extractor/i18n/fr.po
-
37html_image_url_extractor/i18n/fr_CA.po
-
37html_image_url_extractor/i18n/fr_CH.po
-
36html_image_url_extractor/i18n/gl.po
-
36html_image_url_extractor/i18n/he.po
-
37html_image_url_extractor/i18n/hr.po
-
38html_image_url_extractor/i18n/hr_HR.po
-
20html_image_url_extractor/i18n/html_image_url_extractor.pot
-
36html_image_url_extractor/i18n/hu.po
-
36html_image_url_extractor/i18n/id.po
-
24html_image_url_extractor/i18n/it.po
-
36html_image_url_extractor/i18n/ja.po
-
36html_image_url_extractor/i18n/ko.po
-
37html_image_url_extractor/i18n/lt.po
-
38html_image_url_extractor/i18n/lt_LT.po
-
37html_image_url_extractor/i18n/lv.po
-
36html_image_url_extractor/i18n/mk.po
-
36html_image_url_extractor/i18n/mn.po
-
37html_image_url_extractor/i18n/nb.po
-
37html_image_url_extractor/i18n/nb_NO.po
-
36html_image_url_extractor/i18n/nl.po
-
37html_image_url_extractor/i18n/nl_BE.po
-
37html_image_url_extractor/i18n/pl.po
-
36html_image_url_extractor/i18n/pt.po
-
37html_image_url_extractor/i18n/pt_BR.po
-
37html_image_url_extractor/i18n/pt_PT.po
-
37html_image_url_extractor/i18n/ro.po
-
38html_image_url_extractor/i18n/ru.po
-
36html_image_url_extractor/i18n/sk.po
-
37html_image_url_extractor/i18n/sl.po
-
28html_image_url_extractor/i18n/sr.po
-
38html_image_url_extractor/i18n/sr@latin.po
-
36html_image_url_extractor/i18n/sv.po
-
36html_image_url_extractor/i18n/th.po
-
24html_image_url_extractor/i18n/tr.po
-
37html_image_url_extractor/i18n/tr_TR.po
-
37html_image_url_extractor/i18n/uk.po
-
36html_image_url_extractor/i18n/vi.po
-
37html_image_url_extractor/i18n/vi_VN.po
-
37html_image_url_extractor/i18n/zh_CN.po
-
37html_image_url_extractor/i18n/zh_TW.po
-
3html_image_url_extractor/models/__init__.py
-
71html_image_url_extractor/models/ir_fields_converter.py
-
4html_image_url_extractor/readme/CONTRIBUTORS.rst
-
6html_image_url_extractor/readme/DESCRIPTION.rst
-
23html_image_url_extractor/readme/USAGE.rst
-
BINhtml_image_url_extractor/static/description/icon.png
-
3html_image_url_extractor/tests/__init__.py
-
61html_image_url_extractor/tests/test_extractor.py
@ -0,0 +1,86 @@ |
|||||
|
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png |
||||
|
:target: https://www.gnu.org/licenses/agpl |
||||
|
:alt: License: AGPL-3 |
||||
|
|
||||
|
========================== |
||||
|
Image URLs from HTML field |
||||
|
========================== |
||||
|
|
||||
|
This module includes a method that extracts image URLs from any chunk of HTML, |
||||
|
in appearing order. |
||||
|
|
||||
|
It is useful for modules such as `website_blog_excerpt_img |
||||
|
<https://github.com/OCA/website/tree/9.0/website_blog_excerpt_img>`_: blog list shows the first |
||||
|
image included in the post if haven't a defined cover image. |
||||
|
|
||||
|
Usage |
||||
|
===== |
||||
|
|
||||
|
This module just adds a technical utility, but nothing for the end user. |
||||
|
|
||||
|
If you are a developer and need this utility for your module, see these |
||||
|
examples and read the docs inside the code. |
||||
|
|
||||
|
Python example:: |
||||
|
|
||||
|
@api.multi |
||||
|
def some_method(self): |
||||
|
# Get images from an HTML field |
||||
|
imgs = self.env["ir.fields.converter"].imgs_from_html(self.html_field) |
||||
|
for url in imgs: |
||||
|
# Do stuff with those URLs |
||||
|
pass |
||||
|
|
||||
|
QWeb example:: |
||||
|
|
||||
|
<!-- Extract first image from a blog post --> |
||||
|
<t t-foreach="env['ir.fields.converter'] |
||||
|
.imgs_from_html(blog_post.content, 1)" |
||||
|
t-as="url"> |
||||
|
<img t-att-href="url"/> |
||||
|
</t> |
||||
|
|
||||
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
||||
|
:alt: Try me on Runbot |
||||
|
:target: https://runbot.odoo-community.org/runbot/149/12.0 |
||||
|
|
||||
|
Known issues / Roadmap |
||||
|
====================== |
||||
|
|
||||
|
* The regexp to find the URL could be better. |
||||
|
|
||||
|
Bug Tracker |
||||
|
=========== |
||||
|
|
||||
|
Bugs are tracked on `GitHub Issues |
||||
|
<https://github.com/OCA/server-tools/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 |
||||
|
------------ |
||||
|
|
||||
|
* Jairo Llopis <jairo.llopis@tecnativa.com> |
||||
|
* Vicent Cubells <vicent.cubells@tecnativa.com> |
||||
|
* Dennis Sluijk <d.sluijk@onestein.nl> |
||||
|
* Cristina Martin R. <cristina.martin@tecnativa.com> |
||||
|
|
||||
|
Do not contact contributors directly about support or help with technical issues. |
||||
|
|
||||
|
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. |
@ -0,0 +1,3 @@ |
|||||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
from . import models |
@ -0,0 +1,25 @@ |
|||||
|
# Copyright 2016-2017 Jairo Llopis <jairo.llopis@tecnativa.com> |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# Copyright 2016 Tecnativa - Cristina Martin R. |
||||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
||||
|
{ |
||||
|
"name": "Image URLs from HTML field", |
||||
|
"summary": "Extract images found in any HTML field", |
||||
|
"version": "12.0.1.0.0", |
||||
|
"category": "Tools", |
||||
|
"website": "https://github.com/OCA/server-tools", |
||||
|
"author": "Tecnativa, " |
||||
|
"Onestein, " |
||||
|
"Odoo Community Association (OCA)", |
||||
|
"license": "AGPL-3", |
||||
|
"application": False, |
||||
|
"installable": True, |
||||
|
"external_dependencies": { |
||||
|
"python": [ |
||||
|
"lxml", |
||||
|
], |
||||
|
}, |
||||
|
"depends": [ |
||||
|
"base", |
||||
|
], |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" |
||||
|
"Language: am\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última actualización por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última actualización en" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" |
||||
|
"Language: ar\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " |
||||
|
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "أنشئ بواسطة" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "أنشئ في" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "آخر تحديث بواسطة" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "آخر تحديث في" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" |
||||
|
"Language: bg\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Създадено от" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Създадено на" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Последно обновено от" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Последно обновено на" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" |
||||
|
"Language: bs\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Kreirao" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Kreirano" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Zadnje ažurirano" |
@ -0,0 +1,24 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2017-07-21 02:43+0000\n" |
||||
|
"PO-Revision-Date: 2017-07-21 02:43+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
||||
|
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" |
||||
|
"Language: ca\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.fields.converter" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" |
||||
|
"Language: cs\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Vytvořil(a)" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Vytvořeno" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Naposled upraveno" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Naposled upraveno" |
@ -0,0 +1,25 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# Lukáš Spurný <lukasspurny8@gmail.com>, 2018 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 11.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2018-03-03 10:08+0000\n" |
||||
|
"PO-Revision-Date: 2018-03-03 10:08+0000\n" |
||||
|
"Last-Translator: Lukáš Spurný <lukasspurny8@gmail.com>, 2018\n" |
||||
|
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/cs_CZ/)\n" |
||||
|
"Language: cs_CZ\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.fields.converter" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" |
||||
|
"Language: da\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Oprettet af" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Oprettet den" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Sidst opdateret af" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Sidst opdateret den" |
@ -0,0 +1,24 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2017-07-21 02:43+0000\n" |
||||
|
"PO-Revision-Date: 2017-07-21 02:43+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
||||
|
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" |
||||
|
"Language: de\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.fields.converter" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"el_GR/)\n" |
||||
|
"Language: el_GR\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Δημιουργήθηκε από " |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Δημιουργήθηκε στις" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Τελευταία ενημέρωση από" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Τελευταία ενημέρωση στις" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/en_GB/)\n" |
||||
|
"Language: en_GB\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Created by" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Created on" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Last Updated by" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Last Updated on" |
@ -0,0 +1,24 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2017-07-21 02:43+0000\n" |
||||
|
"PO-Revision-Date: 2017-07-21 02:43+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
||||
|
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" |
||||
|
"Language: es\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.fields.converter" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/es_AR/)\n" |
||||
|
"Language: es_AR\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última actualización realizada por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última actualización el" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_CL/)\n" |
||||
|
"Language: es_CL\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última actualización de" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última actualización en" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_CO/)\n" |
||||
|
"Language: es_CO\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Actualizado por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Actualizado" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/es_CR/)\n" |
||||
|
"Language: es_CR\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Ultima actualización por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ultima actualización en" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/es_DO/)\n" |
||||
|
"Language: es_DO\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última actualización de" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última actualización en" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_EC/)\n" |
||||
|
"Language: es_EC\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última actualización de" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última actualización en" |
@ -0,0 +1,25 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2017-12-01 02:10+0000\n" |
||||
|
"PO-Revision-Date: 2017-12-01 02:10+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
||||
|
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_ES/)\n" |
||||
|
"Language: es_ES\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.documentos.conversor" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_MX/)\n" |
||||
|
"Language: es_MX\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Ultima actualizacion por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ultima actualización realizada" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_PE/)\n" |
||||
|
"Language: es_PE\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Actualizado última vez por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ultima Actualización" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"es_PY/)\n" |
||||
|
"Language: es_PY\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Ultima actualización por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ultima actualización en" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/es_VE/)\n" |
||||
|
"Language: es_VE\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última actualización realizada por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ultima actualizacion en" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" |
||||
|
"Language: et\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Loonud" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Loodud" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Viimati uuendatud" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Viimati uuendatud" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" |
||||
|
"Language: eu\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Nork sortua" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Created on" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Last Updated by" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Last Updated on" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" |
||||
|
"Language: fa\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "ایجاد شده توسط" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "ایجاد شده در" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "آخرین به روز رسانی توسط" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "آخرین به روز رسانی در" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" |
||||
|
"Language: fi\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Luonut" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Luotu" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Viimeksi päivittänyt" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Viimeksi päivitetty" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" |
||||
|
"Language: fr\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Créé par" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Créé le" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Dernière mise à jour par" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Dernière mise à jour le" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"fr_CA/)\n" |
||||
|
"Language: fr_CA\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Créé par" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Créé le" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Dernière mise à jour par" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Dernière mise à jour le" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/fr_CH/)\n" |
||||
|
"Language: fr_CH\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Créé par" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Créé le" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Modifié par" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Modifié le" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" |
||||
|
"Language: gl\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creado en" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "ültima actualización por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última actualización en" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" |
||||
|
"Language: he\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "נוצר על ידי" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "נוצר ב-" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "עודכן לאחרונה על ידי" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "עודכן לאחרונה על" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" |
||||
|
"Language: hr\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Kreirao" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Kreirano" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Zadnje ažuriranje" |
@ -0,0 +1,38 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"hr_HR/)\n" |
||||
|
"Language: hr_HR\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Kreirao" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Kreirano" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Zadnje ažurirano" |
@ -0,0 +1,20 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 11.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: \n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: \n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" |
||||
|
"Language: hu\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Készítette" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Létrehozás dátuma" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Utoljára frissítve, által" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Utoljára frissítve " |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" |
||||
|
"Language: id\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Dibuat oleh" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Dibuat pada" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Diperbaharui oleh" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Diperbaharui pada" |
@ -0,0 +1,24 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# Paolo Valier <paolo.valier@hotmail.it>, 2018 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2018-01-06 02:25+0000\n" |
||||
|
"PO-Revision-Date: 2018-01-06 02:25+0000\n" |
||||
|
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2018\n" |
||||
|
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" |
||||
|
"Language: it\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.fields.converter" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" |
||||
|
"Language: ja\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "作成者" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "作成日" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "最終更新者" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "最終更新日" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" |
||||
|
"Language: ko\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "작성자" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "작성일" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "최근 갱신한 사람" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "최근 갱신 날짜" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" |
||||
|
"Language: lt\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" |
||||
|
"%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Sukūrė" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Sukurta" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Paskutinį kartą atnaujino" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Paskutinį kartą atnaujinta" |
@ -0,0 +1,38 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# Arminas Grigonis <arminas@versada.lt>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: Arminas Grigonis <arminas@versada.lt>, 2016\n" |
||||
|
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/lt_LT/)\n" |
||||
|
"Language: lt_LT\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" |
||||
|
"%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Sukūrė" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Sukurta" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Paskutinį kartą atnaujino" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Paskutinį kartą atnaujinta" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" |
||||
|
"Language: lv\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " |
||||
|
"2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Izveidoja" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Izveidots" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Pēdējo reizi atjaunoja" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Pēdējās izmaiņas" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" |
||||
|
"Language: mk\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Креирано од" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Креирано на" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Последно ажурирање од" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Последно ажурирање на" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" |
||||
|
"Language: mn\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Үүсгэгч" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Үүсгэсэн" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Сүүлийн засвар хийсэн" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Сүүлийн засвар хийсэн огноо" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" |
||||
|
"nb/)\n" |
||||
|
"Language: nb\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Opprettet av" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Opprettet den" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Sist oppdatert av" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Sist oppdatert" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016\n" |
||||
|
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/nb_NO/)\n" |
||||
|
"Language: nb_NO\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Laget av" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Laget den" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Sist oppdatert av" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Sist oppdatert den" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" |
||||
|
"Language: nl\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Aangemaakt door" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Aangemaakt op" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Laatst bijgewerkt door" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Laatst bijgewerkt op" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"nl_BE/)\n" |
||||
|
"Language: nl_BE\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Gemaakt door" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Gemaakt op" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Laatst bijgewerkt door" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Laatst bijgewerkt op" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" |
||||
|
"Language: pl\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " |
||||
|
"|| n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Utworzone przez" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Utworzono" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Ostatnio modyfikowane przez" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ostatnia zmiana" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" |
||||
|
"Language: pt\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Criado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Criado em" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Atualizado pela última vez por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Atualizado pela última vez em" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\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" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Criado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Criado em" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Última atualização por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Última atualização em" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/pt_PT/)\n" |
||||
|
"Language: pt_PT\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Criado por" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Criado em" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Atualizado pela última vez por" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Atualizado pela última vez em" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" |
||||
|
"Language: ro\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" |
||||
|
"2:1));\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Creat de" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Creat la" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Ultima actualizare făcută de" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Ultima actualizare la" |
@ -0,0 +1,38 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" |
||||
|
"Language: ru\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" |
||||
|
"%100>=11 && n%100<=14)? 2 : 3);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Создано" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Создан" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Последний раз обновлено" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Последний раз обновлено" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" |
||||
|
"Language: sk\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Vytvoril" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Vytvorené" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Naposledy upravil" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Naposledy upravené" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" |
||||
|
"Language: sl\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" |
||||
|
"%100==4 ? 2 : 3);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Ustvaril" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Ustvarjeno" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Zadnjič posodobil" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Zadnjič posodobljeno" |
@ -0,0 +1,28 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" |
||||
|
"Language: sr\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Kreiran" |
@ -0,0 +1,38 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"sr@latin/)\n" |
||||
|
"Language: sr@latin\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Kreirao" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Kreiran" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Zadnja izmjena" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Zadnja izmjena" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" |
||||
|
"Language: sv\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Skapad av" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Skapad den" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Senast uppdaterad av" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Senast uppdaterad" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" |
||||
|
"Language: th\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "สร้างโดย" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "สร้างเมื่อ" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "อัพเดทครั้งสุดท้ายโดย" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "อัพเดทครั้งสุดท้ายเมื่อ" |
@ -0,0 +1,24 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2017 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2017-07-21 02:43+0000\n" |
||||
|
"PO-Revision-Date: 2017-07-21 02:43+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
||||
|
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" |
||||
|
"Language: tr\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "ir.fields.converter" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2017-01-07 04:04+0000\n" |
||||
|
"PO-Revision-Date: 2017-01-07 04:04+0000\n" |
||||
|
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n" |
||||
|
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"tr_TR/)\n" |
||||
|
"Language: tr_TR\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Oluşturan" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Oluşturulma tarihi" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "En son güncelleyen " |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "En son güncelleme tarihi" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" |
||||
|
"Language: uk\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" |
||||
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Створив" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Дата створення" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Востаннє оновив" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Останнє оновлення" |
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" |
||||
|
"Language: vi\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Được tạo bởi" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Được tạo vào" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Last Updated by" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Cập nhật lần cuối vào" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" |
||||
|
"teams/23907/vi_VN/)\n" |
||||
|
"Language: vi_VN\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "Tạo bởi" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "Tạo vào" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "Cập nhật lần cuối bởi" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "Cập nhật lần cuối vào" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"zh_CN/)\n" |
||||
|
"Language: zh_CN\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "创建者" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "创建时间" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "最后更新者" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "上次更新日期" |
@ -0,0 +1,37 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * html_image_url_extractor |
||||
|
# |
||||
|
# Translators: |
||||
|
# OCA Transbot <transbot@odoo-community.org>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 9.0c\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-12-03 04:11+0000\n" |
||||
|
"PO-Revision-Date: 2016-12-03 04:11+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
||||
|
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" |
||||
|
"zh_TW/)\n" |
||||
|
"Language: zh_TW\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: html_image_url_extractor |
||||
|
#: model:ir.model,name:html_image_url_extractor.model_ir_fields_converter |
||||
|
msgid "ir.fields.converter" |
||||
|
msgstr "" |
||||
|
|
||||
|
#~ msgid "Created by" |
||||
|
#~ msgstr "建立者" |
||||
|
|
||||
|
#~ msgid "Created on" |
||||
|
#~ msgstr "建立於" |
||||
|
|
||||
|
#~ msgid "Last Updated by" |
||||
|
#~ msgstr "最後更新:" |
||||
|
|
||||
|
#~ msgid "Last Updated on" |
||||
|
#~ msgstr "最後更新於" |
@ -0,0 +1,3 @@ |
|||||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
from . import ir_fields_converter |
@ -0,0 +1,71 @@ |
|||||
|
# Copyright 2016-2017 Jairo Llopis <jairo.llopis@tecnativa.com> |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
import re |
||||
|
import logging |
||||
|
from lxml import etree, html |
||||
|
from odoo import api, models |
||||
|
|
||||
|
_logger = logging.getLogger(__name__) |
||||
|
|
||||
|
|
||||
|
class IrFieldsConverter(models.AbstractModel): |
||||
|
_inherit = "ir.fields.converter" |
||||
|
|
||||
|
@api.model |
||||
|
def imgs_from_html(self, html_content, limit=None, fail=False): |
||||
|
"""Extract all images in order from an HTML field in a generator. |
||||
|
|
||||
|
:param str html_content: |
||||
|
HTML contents from where to extract the images. |
||||
|
|
||||
|
:param int limit: |
||||
|
Only get up to this number of images. |
||||
|
|
||||
|
:param bool fail: |
||||
|
If ``True``, exceptions will be raised. |
||||
|
""" |
||||
|
# Parse HTML |
||||
|
try: |
||||
|
doc = html.fromstring(html_content) |
||||
|
except (TypeError, etree.XMLSyntaxError, etree.ParserError): |
||||
|
if fail: |
||||
|
raise |
||||
|
else: |
||||
|
_logger.exception("Failure parsing this HTML:\n%s", |
||||
|
html_content) |
||||
|
return |
||||
|
|
||||
|
# Required tools |
||||
|
query = """ |
||||
|
//img[@src] | |
||||
|
//*[contains(translate(@style, "BACKGROUND", "background"), |
||||
|
'background')] |
||||
|
[contains(translate(@style, "URL", "url"), 'url(')] |
||||
|
""" |
||||
|
rgx = r""" |
||||
|
url\(\s* # Start function |
||||
|
(?P<url>[^)]*) # URL string |
||||
|
\s*\) # End function |
||||
|
""" |
||||
|
rgx = re.compile(rgx, re.IGNORECASE | re.VERBOSE) |
||||
|
|
||||
|
# Loop through possible image URLs |
||||
|
for lap, element in enumerate(doc.xpath(query)): |
||||
|
if limit and lap >= limit: |
||||
|
break |
||||
|
if element.tag == "img": |
||||
|
yield element.attrib["src"] |
||||
|
else: |
||||
|
for rule in element.attrib["style"].split(";"): |
||||
|
# Extract background image |
||||
|
parts = rule.split(":", 1) |
||||
|
try: |
||||
|
if parts[0].strip().lower() in {"background", |
||||
|
"background-image"}: |
||||
|
yield (rgx.search(parts[1]) |
||||
|
.group("url").strip("\"'")) |
||||
|
# Malformed CSS or no match for URL |
||||
|
except (IndexError, AttributeError): |
||||
|
pass |
@ -0,0 +1,4 @@ |
|||||
|
* Jairo Llopis <jairo.llopis@tecnativa.com> |
||||
|
* Vicent Cubells <vicent.cubells@tecnativa.com> |
||||
|
* Dennis Sluijk <d.sluijk@onestein.nl> |
||||
|
* Cristina Martin R. <cristina.martin@tecnativa.com> |
@ -0,0 +1,6 @@ |
|||||
|
This module includes a method that extracts image URLs from any chunk of HTML, |
||||
|
in appearing order. |
||||
|
|
||||
|
It is useful for modules such as `website_blog_excerpt_img |
||||
|
<https://github.com/OCA/website/tree/9.0/website_blog_excerpt_img>`_: blog list shows the first |
||||
|
image included in the post if haven't a defined cover image. |
@ -0,0 +1,23 @@ |
|||||
|
This module just adds a technical utility, but nothing for the end user. |
||||
|
|
||||
|
If you are a developer and need this utility for your module, see these |
||||
|
examples and read the docs inside the code. |
||||
|
|
||||
|
Python example:: |
||||
|
|
||||
|
@api.multi |
||||
|
def some_method(self): |
||||
|
# Get images from an HTML field |
||||
|
imgs = self.env["ir.fields.converter"].imgs_from_html(self.html_field) |
||||
|
for url in imgs: |
||||
|
# Do stuff with those URLs |
||||
|
pass |
||||
|
|
||||
|
QWeb example:: |
||||
|
|
||||
|
<!-- Extract first image from a blog post --> |
||||
|
<t t-foreach="env['ir.fields.converter'] |
||||
|
.imgs_from_html(blog_post.content, 1)" |
||||
|
t-as="url"> |
||||
|
<img t-att-href="url"/> |
||||
|
</t> |
After Width: 128 | Height: 128 | Size: 9.2 KiB |
@ -0,0 +1,3 @@ |
|||||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
from . import test_extractor |
@ -0,0 +1,61 @@ |
|||||
|
# Copyright 2016-2017 Jairo Llopis <jairo.llopis@tecnativa.com> |
||||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
||||
|
|
||||
|
from odoo.tools import mute_logger |
||||
|
from odoo.tests.common import TransactionCase |
||||
|
|
||||
|
|
||||
|
class ExtractorCase(TransactionCase): |
||||
|
def setUp(self): |
||||
|
super(ExtractorCase, self).setUp() |
||||
|
# Shortcut |
||||
|
self.imgs_from_html = self.env["ir.fields.converter"].imgs_from_html |
||||
|
|
||||
|
def test_mixed_images_found(self): |
||||
|
"""Images correctly found in <img> elements and backgrounds.""" |
||||
|
content = u""" |
||||
|
<div> |
||||
|
<!-- src-less img --> |
||||
|
<img/> |
||||
|
<p/> |
||||
|
<img src="/path/0"/> |
||||
|
<img src="/path/1"/> |
||||
|
<img src="/path/2"/> |
||||
|
<img src="/path/3"/> |
||||
|
<section style="background : URL('/path/4');;background;ö;"> |
||||
|
<div style='BACKGROUND-IMAGE:url(/path/5)'> |
||||
|
<p style="background:uRl("/path/6")"> |
||||
|
<img src="/path/7"/> |
||||
|
</p> |
||||
|
</div> |
||||
|
</section> |
||||
|
</div> |
||||
|
""" |
||||
|
|
||||
|
# Read all images |
||||
|
for n, url in enumerate(self.imgs_from_html(content)): |
||||
|
self.assertEqual("/path/%d" % n, url) |
||||
|
self.assertEqual(n, 7) |
||||
|
|
||||
|
# Read only first image |
||||
|
for n, url in enumerate(self.imgs_from_html(content, 1)): |
||||
|
self.assertEqual("/path/%d" % n, url) |
||||
|
self.assertEqual(n, 0) |
||||
|
|
||||
|
@mute_logger("odoo.addons.html_image_url_extractor" + |
||||
|
".models.ir_fields_converter") |
||||
|
def test_empty_html(self): |
||||
|
"""Empty HTML handled correctly.""" |
||||
|
for laps, text in self.imgs_from_html(""): |
||||
|
self.assertTrue(False) # You should never get here |
||||
|
with self.assertRaises(Exception): |
||||
|
list(self.imgs_from_html("", fail=True)) |
||||
|
|
||||
|
@mute_logger("odoo.addons.html_image_url_extractor" + |
||||
|
".models.ir_fields_converter") |
||||
|
def test_false_html(self): |
||||
|
"""``False`` HTML handled correctly.""" |
||||
|
for laps, text in self.imgs_from_html(False): |
||||
|
self.assertTrue(False) # You should never get here |
||||
|
with self.assertRaises(Exception): |
||||
|
list(self.imgs_from_html(False, fail=True)) |
Write
Preview
Loading…
Cancel
Save
Reference in new issue