From fc0d719786c2750b6715c7c1464869569c682c81 Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Mon, 1 Aug 2016 13:26:02 +0200 Subject: [PATCH 01/23] Migrate and rename attachment_metadata to attachment_base_synchronize --- attachment_base_synchronize/README.rst | 84 ++++++ attachment_base_synchronize/__init__.py | 1 + attachment_base_synchronize/__openerp__.py | 23 ++ attachment_base_synchronize/data/cron.xml | 18 ++ attachment_base_synchronize/i18n/de.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/en.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/es.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/fi.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/fr.po | 243 ++++++++++++++++++ attachment_base_synchronize/i18n/it.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/pt_BR.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/ru.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/sl.po | 243 ++++++++++++++++++ attachment_base_synchronize/i18n/tr.po | 242 +++++++++++++++++ attachment_base_synchronize/i18n/zh_CN.po | 242 +++++++++++++++++ .../models/__init__.py | 1 + .../models/attachment.py | 104 ++++++++ .../security/ir.model.access.csv | 2 + .../views/attachment_view.xml | 112 ++++++++ 19 files changed, 3009 insertions(+) create mode 100644 attachment_base_synchronize/README.rst create mode 100644 attachment_base_synchronize/__init__.py create mode 100644 attachment_base_synchronize/__openerp__.py create mode 100644 attachment_base_synchronize/data/cron.xml create mode 100644 attachment_base_synchronize/i18n/de.po create mode 100644 attachment_base_synchronize/i18n/en.po create mode 100644 attachment_base_synchronize/i18n/es.po create mode 100644 attachment_base_synchronize/i18n/fi.po create mode 100644 attachment_base_synchronize/i18n/fr.po create mode 100644 attachment_base_synchronize/i18n/it.po create mode 100644 attachment_base_synchronize/i18n/pt_BR.po create mode 100644 attachment_base_synchronize/i18n/ru.po create mode 100644 attachment_base_synchronize/i18n/sl.po create mode 100644 attachment_base_synchronize/i18n/tr.po create mode 100644 attachment_base_synchronize/i18n/zh_CN.po create mode 100644 attachment_base_synchronize/models/__init__.py create mode 100644 attachment_base_synchronize/models/attachment.py create mode 100644 attachment_base_synchronize/security/ir.model.access.csv create mode 100644 attachment_base_synchronize/views/attachment_view.xml diff --git a/attachment_base_synchronize/README.rst b/attachment_base_synchronize/README.rst new file mode 100644 index 00000000000..5abfa0cc4fe --- /dev/null +++ b/attachment_base_synchronize/README.rst @@ -0,0 +1,84 @@ + +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +==================== +Attachment Metadata +==================== + +This module extend ir.attachment model with some new fields for a better control +for import and export of files. + +The main feature is an integrity file check with a hash. + +A file hash is short representation (signature) computed from file data. +Hashes computed before send file and after received file can be compared to be +sure of the content integrity. + +An example of the use of this module, can be found in the external_file_location. + + +Usage +===== + +Go the menu Settings > Attachments + +You can create / see standard attachments with additional fields + + + +.. 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/8.0 + + +Known issues / Roadmap +====================== + +The purpose of this module is not to import the data of the file but only exchange files with external application. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed `feedback +`_. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + + +Contributors +------------ + +* Valentin CHEMIERE +* Sebastien BEAU +* Joel Grand-Guillaume Camptocamp +* initOS + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/attachment_base_synchronize/__init__.py b/attachment_base_synchronize/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/attachment_base_synchronize/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/attachment_base_synchronize/__openerp__.py b/attachment_base_synchronize/__openerp__.py new file mode 100644 index 00000000000..1e5c381198e --- /dev/null +++ b/attachment_base_synchronize/__openerp__.py @@ -0,0 +1,23 @@ +# coding: utf-8 +# @ 2015 Florian DA COSTA @ Akretion +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'Attachment Base Synchronize', + 'version': '9.0.1.0.0', + 'author': 'Akretion,Odoo Community Association (OCA)', + 'website': 'www.akretion.com', + 'license': 'AGPL-3', + 'category': 'Generic Modules', + 'depends': [ + 'base', + ], + 'data': [ + 'views/attachment_view.xml', + 'security/ir.model.access.csv', + 'data/cron.xml', + ], + 'installable': True, + 'application': False, + 'images': [], +} diff --git a/attachment_base_synchronize/data/cron.xml b/attachment_base_synchronize/data/cron.xml new file mode 100644 index 00000000000..031d594dc8c --- /dev/null +++ b/attachment_base_synchronize/data/cron.xml @@ -0,0 +1,18 @@ + + + + + + Run Attachments Metadata + 30 + minutes + -1 + False + + ir.attachment.metadata + run_attachment_metadata_scheduler + ([]) + + + + diff --git a/attachment_base_synchronize/i18n/de.po b/attachment_base_synchronize/i18n/de.po new file mode 100644 index 00000000000..fe88b281c62 --- /dev/null +++ b/attachment_base_synchronize/i18n/de.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Erstellt von" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Erstellt am:" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Beschreibung" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "Ressourcen-ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Ressourcenname" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/en.po b/attachment_base_synchronize/i18n/en.po new file mode 100644 index 00000000000..fd7b04edfb5 --- /dev/null +++ b/attachment_base_synchronize/i18n/en.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "Attachment" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "Attachment Name" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "Attachment id" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "Attachments" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "Binary" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "Binary File or URL" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "Company" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "Creation Month" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "Database Data" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Description" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "External hash" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "File Content" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "File Name" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "File Size" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "File corrupted: Something was wrong with the retrieved file, please relaunch the task." + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "File hash comes from the external owner of the file.\nIf provided allow to check than downloaded file is the exact copy of the original file." + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "File hash computed with file data to be compared to external hash when provided." + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "File type" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "Filter on my documents" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "Group By" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "Internal hash" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "Link to ir.attachment model " + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "Meta data Attachments" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "My Document(s)" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "Owner" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "Resource ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "Resource Model" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Resource Name" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "Stored Filename" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "The database object this attachment will be attached to" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "The file type determines an import method to be used to parse and transform data before their import in ERP" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "The record id this is attached to" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "Type" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "URL" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "Url" diff --git a/attachment_base_synchronize/i18n/es.po b/attachment_base_synchronize/i18n/es.po new file mode 100644 index 00000000000..21d731b59fb --- /dev/null +++ b/attachment_base_synchronize/i18n/es.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Creado el" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Descripción" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "Última actualización por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "ID del recurso" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Nombre del recurso" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fi.po b/attachment_base_synchronize/i18n/fi.po new file mode 100644 index 00000000000..d0f3507c357 --- /dev/null +++ b/attachment_base_synchronize/i18n/fi.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-06 13:36+0000\n" +"Last-Translator: Jarmo Kortetjärvi \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Kuvaus" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fr.po b/attachment_base_synchronize/i18n/fr.po new file mode 100644 index 00000000000..49cc2696731 --- /dev/null +++ b/attachment_base_synchronize/i18n/fr.po @@ -0,0 +1,243 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-17 02:42+0000\n" +"PO-Revision-Date: 2016-06-23 09:22+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "Pièce jointe" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "Nom de la pièce jointe" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "ID de la pièce jointe" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "Pièces jointes" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "Binaire" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "Fichier binaire ou URL" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "Société" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "Données de la base de données" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Description" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "Empreinte externe" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "Contenu du fichier" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "Nom du fichier" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "Taille du fichier" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "Fichier corrompu: Quelque chose ne va pas lors de la récupération du fichier, veuillez relancer la tâche." + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "Type de fichier" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "Filtrer sur mes documents" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "Grouper par" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "Empreinte interne" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "Lien ver le modèle ir.attachment" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "Méta données des pièces jointes" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "Mes docuement(s)" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "Propriétaire" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "ID de l'enregistrement" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Nom de l'enregistrement" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "Nom de fichier stocké" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "Type" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "URL" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "Url" diff --git a/attachment_base_synchronize/i18n/it.po b/attachment_base_synchronize/i18n/it.po new file mode 100644 index 00000000000..8cb84d9080c --- /dev/null +++ b/attachment_base_synchronize/i18n/it.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Descrizione" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "Nome del campo" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "Proprietario" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "ID Risorsa" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Nome della Risorsa" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "URL" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/pt_BR.po b/attachment_base_synchronize/i18n/pt_BR.po new file mode 100644 index 00000000000..baa497c5c4b --- /dev/null +++ b/attachment_base_synchronize/i18n/pt_BR.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Descrição" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "Identificação do Recurso" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Nome do Recurso" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "Tipo" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ru.po b/attachment_base_synchronize/i18n/ru.po new file mode 100644 index 00000000000..8c6104c8fdb --- /dev/null +++ b/attachment_base_synchronize/i18n/ru.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Описание" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/sl.po b/attachment_base_synchronize/i18n/sl.po new file mode 100644 index 00000000000..4f442cec3e1 --- /dev/null +++ b/attachment_base_synchronize/i18n/sl.po @@ -0,0 +1,243 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:49+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "Priponka" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "Naziv priponke" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "ID priponke" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "Priponke" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "Binarno" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "Binarna datoteka ali URL" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "Družba" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "Mesec nastanka" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "Podatki o podatkovni bazi" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Opis" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "Zunanji hash" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "Vsebina datoteke" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "Naziv datoteke" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "Velikost datoteke" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "Datoteka okvarjena: Nekaj je narobe s pridobljeno datoteko. Ponovno zaženite opravilo, prosim." + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "Hash datoteke prihaja z zunanjim lastnikom datoteke.\nČe je podano, omogoča preverjanje, če je prenesena datoteke natančna kopija originalne." + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "Hash datoteke obdelan s podatki o datoteki za primerjavo z zunanjim hash (če je podan)." + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "Tip datoteke" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "Filtriraj po mojih dokumentih" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "Združi po" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "Interni hash" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "Povezava do ir.attachment model " + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "Metadata priponk" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "Moji dokumenti" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "Lastnik" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "ID vira" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "Model vira" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Naziv vira" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "Shranjeni naziv datoteke" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "Objekt podatkovne baze, kamor se bo priponka pripela" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "Tip datoteke določa metodo uvoza, ki se bo uporabila za razčlenjevanje in pretvorbo podatkov pred uvozom v ERP" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "ID zapisa, kamor je to pripeto" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "Tip" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "URL" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "URL" diff --git a/attachment_base_synchronize/i18n/tr.po b/attachment_base_synchronize/i18n/tr.po new file mode 100644 index 00000000000..3d0d6b51fce --- /dev/null +++ b/attachment_base_synchronize/i18n/tr.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "Açıklama" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "Dosya adı" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "Grupla" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "Kaynak ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "Kaynak Adı" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/i18n/zh_CN.po b/attachment_base_synchronize/i18n/zh_CN.po new file mode 100644 index 00000000000..74aa3c2dcc2 --- /dev/null +++ b/attachment_base_synchronize/i18n/zh_CN.po @@ -0,0 +1,242 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_metadata +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 18:30+0000\n" +"PO-Revision-Date: 2016-06-01 09:37+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,attachment_id:0 +msgid "Attachment id" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,type:0 +msgid "Binary File or URL" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,company_id:0 +msgid "Company" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,db_datas:0 +msgid "Database Data" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,description:0 +msgid "Description" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,external_hash:0 +msgid "External hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas:0 +msgid "File Content" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,datas_fname:0 +msgid "File Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,file_size:0 +msgid "File Size" +msgstr "" + +#. module: attachment_metadata +#: code:addons/attachment_metadata/models/attachment.py:43 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,external_hash:0 +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,internal_hash:0 +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,file_type:0 +msgid "File type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,id:0 +msgid "ID" +msgstr "ID" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,internal_hash:0 +msgid "Internal hash" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,attachment_id:0 +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_metadata +#: model:ir.actions.act_window,name:attachment_metadata.action_attachment +#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_model:0 +msgid "Resource Model" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,res_name:0 +msgid "Resource Name" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,store_fname:0 +msgid "Stored Filename" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_model:0 +msgid "The database object this attachment will be attached to" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,file_type:0 +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP" +msgstr "" + +#. module: attachment_metadata +#: help:ir.attachment.metadata,res_id:0 +msgid "The record id this is attached to" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#: field:ir.attachment.metadata,type:0 +msgid "Type" +msgstr "" + +#. module: attachment_metadata +#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_metadata +#: field:ir.attachment.metadata,url:0 +msgid "Url" +msgstr "" diff --git a/attachment_base_synchronize/models/__init__.py b/attachment_base_synchronize/models/__init__.py new file mode 100644 index 00000000000..c14c863593a --- /dev/null +++ b/attachment_base_synchronize/models/__init__.py @@ -0,0 +1 @@ +from . import attachment diff --git a/attachment_base_synchronize/models/attachment.py b/attachment_base_synchronize/models/attachment.py new file mode 100644 index 00000000000..21064e36442 --- /dev/null +++ b/attachment_base_synchronize/models/attachment.py @@ -0,0 +1,104 @@ +# coding: utf-8 +# @ 2015 Florian DA COSTA @ Akretion +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import models, fields, api, _ +from openerp.exceptions import Warning as UserError +from openerp import sql_db +import hashlib +from base64 import b64decode +import logging + +_logger = logging.getLogger(__name__) + + +class IrAttachmentMetadata(models.Model): + _name = 'ir.attachment.metadata' + _inherits = {'ir.attachment': 'attachment_id'} + + internal_hash = fields.Char( + store=True, compute='_compute_hash', + help="File hash computed with file data to be compared " + "to external hash when provided.") + external_hash = fields.Char( + help="File hash comes from the external owner of the file.\n" + "If provided allow to check than downloaded file " + "is the exact copy of the original file.") + attachment_id = fields.Many2one( + 'ir.attachment', required=True, ondelete='cascade', + help="Link to ir.attachment model ") + file_type = fields.Selection( + selection=[], + string="File type", + help="The file type determines an import method to be used " + "to parse and transform data before their import in ERP or an export") + sync_date = fields.Datetime() + state = fields.Selection([ + ('pending', 'Pending'), + ('failed', 'Failed'), + ('done', 'Done'), + ], readonly=False, required=True, default='pending') + state_message = fields.Text() + + @api.depends('datas', 'external_hash') + def _compute_hash(self): + for attachment in self: + if attachment.datas: + attachment.internal_hash = hashlib.md5( + b64decode(attachment.datas)).hexdigest() + if attachment.external_hash and\ + attachment.internal_hash != attachment.external_hash: + raise UserError( + _("File corrupted: Something was wrong with " + "the retrieved file, please relaunch the task.")) + + @api.model + def run_attachment_metadata_scheduler(self, domain=None): + if domain is None: + domain = [] + domain.append(('state', '=', 'pending')) + attachments = self.search(domain) + if attachments: + return attachments.run() + return True + + @api.multi + def run(self): + """ + Run the process for each attachment metadata + """ + for attachment in self: + new_cr = sql_db.db_connect(self.env.cr.dbname).cursor() + with api.Environment.manage(): + attachment.env = api.Environment(new_cr, self.env.uid, + self.env.context) + try: + attachment._run() + except Exception, e: + attachment.env.cr.rollback() + _logger.exception(e) + attachment.write( + { + 'state': 'failed', + 'state_message': unicode(e) + }) + attachment.env.cr.commit() + else: + attachment.write({'state': 'done'}) + attachment.env.cr.commit() + finally: + attachment.env.cr.close() + return True + + @api.multi + def _run(self): + self.ensure_one() + _logger.info('Start to process attachment metadata id %s' % self.id) + + @api.multi + def set_done(self): + """ + Manually set to done + """ + message = "Manually set to done by %s" % self.env.user.name + self.write({'state_message': message, 'state': 'done'}) diff --git a/attachment_base_synchronize/security/ir.model.access.csv b/attachment_base_synchronize/security/ir.model.access.csv new file mode 100644 index 00000000000..9b01638c441 --- /dev/null +++ b/attachment_base_synchronize/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_attachment_metadata_user,ir.attachment.metadata.user,model_ir_attachment_metadata,base.group_user,1,0,0,0 diff --git a/attachment_base_synchronize/views/attachment_view.xml b/attachment_base_synchronize/views/attachment_view.xml new file mode 100644 index 00000000000..ae73825c5b6 --- /dev/null +++ b/attachment_base_synchronize/views/attachment_view.xml @@ -0,0 +1,112 @@ + + + + + + ir.attachment.metadata + + + +
+
+
+ + + + + + + + + + + + + +
+ + + ir.attachment.metadata + + + + + + + + + + + + + + ir.attachment.metadata + + + + + + + + + + + + + + + + + + + + + + + + + + + Meta data Attachments + ir.actions.act_window + ir.attachment.metadata + form + tree,form + + + + + + + tree + + + + + + + form + + + + + + + +
+
From 7cdfe5a87926d0af35fc07b7042377ed866a3419 Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Wed, 3 Aug 2016 19:21:24 +0200 Subject: [PATCH 02/23] change way to open new cursor --- attachment_base_synchronize/__openerp__.py | 1 + attachment_base_synchronize/i18n/fr.po | 334 +++++++++++------- .../models/attachment.py | 40 +-- 3 files changed, 226 insertions(+), 149 deletions(-) diff --git a/attachment_base_synchronize/__openerp__.py b/attachment_base_synchronize/__openerp__.py index 1e5c381198e..2b0fbae79fa 100644 --- a/attachment_base_synchronize/__openerp__.py +++ b/attachment_base_synchronize/__openerp__.py @@ -11,6 +11,7 @@ 'category': 'Generic Modules', 'depends': [ 'base', + 'mail', ], 'data': [ 'views/attachment_view.xml', diff --git a/attachment_base_synchronize/i18n/fr.po b/attachment_base_synchronize/i18n/fr.po index 49cc2696731..e784e6897da 100644 --- a/attachment_base_synchronize/i18n/fr.po +++ b/attachment_base_synchronize/i18n/fr.po @@ -1,243 +1,319 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata -# -# Translators: -# Christophe CHAUVET , 2016 +# * attachment_base_synchronize +# msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-17 02:42+0000\n" -"PO-Revision-Date: 2016-06-23 09:22+0000\n" -"Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr/)\n" +"POT-Creation-Date: 2016-08-10 16:34+0000\n" +"PO-Revision-Date: 2016-08-10 16:34+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: \n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "Pièce jointe" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "Nom de la pièce jointe" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "Lien de la pièce jointe" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "ID de la pièce jointe" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "Pièces jointes" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "Binaire" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" -msgstr "Fichier binaire ou URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "Somme de Contrôle/SHA1" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "Société" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Créé par" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Créé le" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" -msgstr "" +msgstr "Mois de création" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "Données de la base de données" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Description" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" -msgstr "Nom affiché" +msgstr "Afficher le nom" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "Terminé" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "Erreur" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "Empreinte externe" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "Échec" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "Contenu du fichier" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" -msgstr "Nom du fichier" +msgstr "Nom de Fichier" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "Taille du fichier" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:53 #, python-format -msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." -msgstr "Fichier corrompu: Quelque chose ne va pas lors de la récupération du fichier, veuillez relancer la tâche." +msgid "File corrupted: Something was wrong with the retrieved file, please relaunch the task." +msgstr "Fichier corrompu: Quelque chose s'est mal passé pendant la récupération du fichier, relancez la tache.." -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 -msgid "" -"File hash comes from the external owner of the file.\n" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." -msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 -msgid "" -"File hash computed with file data to be compared to external hash when " -"provided." -msgstr "" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "File hash computed with file data to be compared to external hash when provided." +msgstr "File hash computed with file data to be compared to external hash when provided." -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "Type de fichier" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "Filtrer sur mes documents" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "Grouper par" +msgstr "Regrouper par" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" -msgstr "ID" +msgstr "Identifiant" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "Contenu Indexé" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "Empreinte interne" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "Est un document public" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "Dernière modification le" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" -msgstr "Mis à jour par" +msgstr "Dernière mise à jour par" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" -msgstr "Mis à jour le" +msgstr "Dernière mise à jour le" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "Lien ver le modèle ir.attachment" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" -msgstr "Méta données des pièces jointes" +msgstr "Meta data Attachments" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "Type Mime" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" -msgstr "Mes docuement(s)" +msgstr "Mes Documents" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "Propriétaire" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "En attente" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "Champ ressource" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "ID de l'enregistrement" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" -msgstr "" +msgstr "Modèle de la ressource" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Nom de l'enregistrement" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "Run" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "Marquer comme terminé" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "État" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "Message" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "Nom de fichier stocké" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "Sync date" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "The database object this attachment will be attached to" -msgstr "" +msgstr "L'objet de la base de données auquel cette pièce jointe sera attachée" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 -msgid "" -"The file type determines an import method to be used to parse and transform " -"data before their import in ERP" -msgstr "" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "The file type determines an import method to be used to parse and transform data before their import in ERP or an export" +msgstr "Le type de fichier détermine la méthode d'import à utiliser pour parser le fichier et transformer les données avant l'import dans l'ERP" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "The record id this is attached to" -msgstr "" +msgstr "L'identifiant de l'enregistrement qui y est attaché" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" msgstr "Type" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "URL" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "Url" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file" +msgstr "Vous pouvez, soit télécharger un fichier à partir de votre ordinateur soit copier / coller un lien Internet vers votre fichier" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "ir.attachment.metadata" + diff --git a/attachment_base_synchronize/models/attachment.py b/attachment_base_synchronize/models/attachment.py index 21064e36442..baba50fd88b 100644 --- a/attachment_base_synchronize/models/attachment.py +++ b/attachment_base_synchronize/models/attachment.py @@ -4,7 +4,7 @@ from openerp import models, fields, api, _ from openerp.exceptions import Warning as UserError -from openerp import sql_db +import openerp import hashlib from base64 import b64decode import logging @@ -15,6 +15,7 @@ class IrAttachmentMetadata(models.Model): _name = 'ir.attachment.metadata' _inherits = {'ir.attachment': 'attachment_id'} + _inherit = ['mail.thread'] internal_hash = fields.Char( store=True, compute='_compute_hash', @@ -68,26 +69,25 @@ def run(self): Run the process for each attachment metadata """ for attachment in self: - new_cr = sql_db.db_connect(self.env.cr.dbname).cursor() with api.Environment.manage(): - attachment.env = api.Environment(new_cr, self.env.uid, - self.env.context) - try: - attachment._run() - except Exception, e: - attachment.env.cr.rollback() - _logger.exception(e) - attachment.write( - { - 'state': 'failed', - 'state_message': unicode(e) - }) - attachment.env.cr.commit() - else: - attachment.write({'state': 'done'}) - attachment.env.cr.commit() - finally: - attachment.env.cr.close() + with openerp.registry(self.env.cr.dbname).cursor() as new_cr: + new_env = api.Environment( + new_cr, self.env.uid, self.env.context) + attach = attachment.with_env(new_env) + try: + attach._run() + except Exception, e: + attach.env.cr.rollback() + _logger.exception(e) + attach.write( + { + 'state': 'failed', + 'state_message': e, + }) + attach.env.cr.commit() + else: + attach.write({'state': 'done'}) + attach.env.cr.commit() return True @api.multi From b8a36906a8b381efe832a46204fdf432c151f634 Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Fri, 19 Aug 2016 17:48:03 +0200 Subject: [PATCH 03/23] Order ir attachment metadata by create date --- attachment_base_synchronize/views/attachment_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attachment_base_synchronize/views/attachment_view.xml b/attachment_base_synchronize/views/attachment_view.xml index ae73825c5b6..7da173faf0a 100644 --- a/attachment_base_synchronize/views/attachment_view.xml +++ b/attachment_base_synchronize/views/attachment_view.xml @@ -32,7 +32,7 @@ ir.attachment.metadata - + From 09a2b5eec13815783256022071e0fce806976b9e Mon Sep 17 00:00:00 2001 From: Angel Moya Date: Mon, 3 Oct 2016 14:16:44 +0200 Subject: [PATCH 04/23] ADD tests --- attachment_base_synchronize/README.rst | 1 + attachment_base_synchronize/__openerp__.py | 3 ++ .../demo/attachment_metadata_demo.xml | 12 +++++ attachment_base_synchronize/tests/__init__.py | 5 ++ .../tests/test_attachment_base_synchronize.py | 50 +++++++++++++++++++ 5 files changed, 71 insertions(+) create mode 100644 attachment_base_synchronize/demo/attachment_metadata_demo.xml create mode 100644 attachment_base_synchronize/tests/__init__.py create mode 100644 attachment_base_synchronize/tests/test_attachment_base_synchronize.py diff --git a/attachment_base_synchronize/README.rst b/attachment_base_synchronize/README.rst index 5abfa0cc4fe..fe25020d220 100644 --- a/attachment_base_synchronize/README.rst +++ b/attachment_base_synchronize/README.rst @@ -67,6 +67,7 @@ Contributors * Sebastien BEAU * Joel Grand-Guillaume Camptocamp * initOS +* Angel Moya Maintainer ---------- diff --git a/attachment_base_synchronize/__openerp__.py b/attachment_base_synchronize/__openerp__.py index 2b0fbae79fa..cdc33023c1c 100644 --- a/attachment_base_synchronize/__openerp__.py +++ b/attachment_base_synchronize/__openerp__.py @@ -18,6 +18,9 @@ 'security/ir.model.access.csv', 'data/cron.xml', ], + 'demo': [ + 'demo/attachment_metadata_demo.xml' + ], 'installable': True, 'application': False, 'images': [], diff --git a/attachment_base_synchronize/demo/attachment_metadata_demo.xml b/attachment_base_synchronize/demo/attachment_metadata_demo.xml new file mode 100644 index 00000000000..1a844455783 --- /dev/null +++ b/attachment_base_synchronize/demo/attachment_metadata_demo.xml @@ -0,0 +1,12 @@ + + + + + + bWlncmF0aW9uIHRlc3Q= + attachment_metadata.doc + attachment_metadata.doc + + + + diff --git a/attachment_base_synchronize/tests/__init__.py b/attachment_base_synchronize/tests/__init__.py new file mode 100644 index 00000000000..ef5480f44cd --- /dev/null +++ b/attachment_base_synchronize/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Angel Moya (http://angelmoya.es) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_attachment_base_synchronize diff --git a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py new file mode 100644 index 00000000000..7ace252762d --- /dev/null +++ b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Angel Moya (http://angelmoya.es) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from openerp.tests.common import TransactionCase +import openerp +from openerp import api + + +class TestAttachmentBaseSynchronize(TransactionCase): + + def setUp(self): + super(TestAttachmentBaseSynchronize, self).setUp() + self.registry.enter_test_mode() + self.env = api.Environment(self.registry.test_cr, self.env.uid, + self.env.context) + self.attachment = self.env.ref( + 'attachment_base_synchronize.attachment_metadata') + self.ir_attachment_metadata = self.env['ir.attachment.metadata'] + + def tearDown(self): + self.registry.leave_test_mode() + super(TestAttachmentBaseSynchronize, self).tearDown() + + def test_attachment_metadata(self): + """Test run_attachment_metadata_scheduler to ensure set state to done + """ + self.assertEqual( + self.attachment.state, + 'pending' + ) + self.ir_attachment_metadata.run_attachment_metadata_scheduler() + self.env.invalidate_all() + with openerp.registry(self.env.cr.dbname).cursor() as new_cr: + new_env = api.Environment( + new_cr, self.env.uid, self.env.context) + attach = self.attachment.with_env(new_env) + self.assertEqual( + attach.state, + 'done' + ) + + def test_set_done(self): + """Test set_done manually + """ + self.attachment.set_done() + self.assertEqual( + self.attachment.state, + 'done' + ) From aa3118cd20c2b4544b261160faecbae9af24cd96 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 16:08:19 +0200 Subject: [PATCH 05/23] [MIG] Make modules uninstallable --- attachment_base_synchronize/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attachment_base_synchronize/__openerp__.py b/attachment_base_synchronize/__openerp__.py index cdc33023c1c..40f3f390e63 100644 --- a/attachment_base_synchronize/__openerp__.py +++ b/attachment_base_synchronize/__openerp__.py @@ -21,7 +21,7 @@ 'demo': [ 'demo/attachment_metadata_demo.xml' ], - 'installable': True, + 'installable': False, 'application': False, 'images': [], } From ed2c71e70307e8f514d70daa6b2d74ca8f480fb2 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 16:08:27 +0200 Subject: [PATCH 06/23] [MIG] Rename manifest files --- attachment_base_synchronize/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename attachment_base_synchronize/{__openerp__.py => __manifest__.py} (100%) diff --git a/attachment_base_synchronize/__openerp__.py b/attachment_base_synchronize/__manifest__.py similarity index 100% rename from attachment_base_synchronize/__openerp__.py rename to attachment_base_synchronize/__manifest__.py From a7b80b9b0588c14abecd45858f87a91bfa59434c Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Mon, 6 Mar 2017 11:00:51 +0100 Subject: [PATCH 07/23] [MIG] Migrate module to v10 --- attachment_base_synchronize/README.rst | 17 +++++----------- attachment_base_synchronize/__manifest__.py | 4 ++-- attachment_base_synchronize/data/cron.xml | 6 ++---- .../demo/attachment_metadata_demo.xml | 6 ++---- .../models/attachment.py | 20 +++++++++++-------- .../security/ir.model.access.csv | 3 ++- .../tests/test_attachment_base_synchronize.py | 12 +++++++---- .../views/attachment_view.xml | 6 ++---- 8 files changed, 35 insertions(+), 39 deletions(-) diff --git a/attachment_base_synchronize/README.rst b/attachment_base_synchronize/README.rst index fe25020d220..a609c314a4d 100644 --- a/attachment_base_synchronize/README.rst +++ b/attachment_base_synchronize/README.rst @@ -1,4 +1,3 @@ - .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 @@ -22,7 +21,7 @@ An example of the use of this module, can be found in the external_file_location Usage ===== -Go the menu Settings > Attachments +Go the menu Settings > Technical > Database Structure > Meta Data Attachments You can create / see standard attachments with additional fields @@ -30,7 +29,7 @@ You can create / see standard attachments with additional fields .. 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/8.0 + :target: https://runbot.odoo-community.org/runbot/149/10.0 Known issues / Roadmap @@ -43,13 +42,9 @@ Bug Tracker =========== Bugs are tracked on `GitHub Issues -`_. In case of trouble, please +`_. 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 -`_. +help us smash it by providing detailed and welcomed feedback. Credits ======= @@ -64,9 +59,7 @@ Contributors ------------ * Valentin CHEMIERE -* Sebastien BEAU -* Joel Grand-Guillaume Camptocamp -* initOS +* Florian da Costa * Angel Moya Maintainer diff --git a/attachment_base_synchronize/__manifest__.py b/attachment_base_synchronize/__manifest__.py index 40f3f390e63..47bc7192952 100644 --- a/attachment_base_synchronize/__manifest__.py +++ b/attachment_base_synchronize/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Attachment Base Synchronize', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'author': 'Akretion,Odoo Community Association (OCA)', 'website': 'www.akretion.com', 'license': 'AGPL-3', @@ -21,7 +21,7 @@ 'demo': [ 'demo/attachment_metadata_demo.xml' ], - 'installable': False, + 'installable': True, 'application': False, 'images': [], } diff --git a/attachment_base_synchronize/data/cron.xml b/attachment_base_synchronize/data/cron.xml index 031d594dc8c..47c82b1502f 100644 --- a/attachment_base_synchronize/data/cron.xml +++ b/attachment_base_synchronize/data/cron.xml @@ -1,6 +1,5 @@ - - + Run Attachments Metadata @@ -14,5 +13,4 @@ ([]) - - + diff --git a/attachment_base_synchronize/demo/attachment_metadata_demo.xml b/attachment_base_synchronize/demo/attachment_metadata_demo.xml index 1a844455783..0dd70b59a19 100644 --- a/attachment_base_synchronize/demo/attachment_metadata_demo.xml +++ b/attachment_base_synchronize/demo/attachment_metadata_demo.xml @@ -1,6 +1,5 @@ - - + bWlncmF0aW9uIHRlc3Q= @@ -8,5 +7,4 @@ attachment_metadata.doc - - + diff --git a/attachment_base_synchronize/models/attachment.py b/attachment_base_synchronize/models/attachment.py index baba50fd88b..81d7d5b1340 100644 --- a/attachment_base_synchronize/models/attachment.py +++ b/attachment_base_synchronize/models/attachment.py @@ -2,12 +2,13 @@ # @ 2015 Florian DA COSTA @ Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api, _ -from openerp.exceptions import Warning as UserError -import openerp -import hashlib from base64 import b64decode +import hashlib import logging +import odoo +from odoo import _, api, fields, models +from odoo.exceptions import UserError + _logger = logging.getLogger(__name__) @@ -56,8 +57,7 @@ def _compute_hash(self): @api.model def run_attachment_metadata_scheduler(self, domain=None): if domain is None: - domain = [] - domain.append(('state', '=', 'pending')) + domain = [('state', '=', 'pending')] attachments = self.search(domain) if attachments: return attachments.run() @@ -70,7 +70,7 @@ def run(self): """ for attachment in self: with api.Environment.manage(): - with openerp.registry(self.env.cr.dbname).cursor() as new_cr: + with odoo.registry(self.env.cr.dbname).cursor() as new_cr: new_env = api.Environment( new_cr, self.env.uid, self.env.context) attach = attachment.with_env(new_env) @@ -86,7 +86,11 @@ def run(self): }) attach.env.cr.commit() else: - attach.write({'state': 'done'}) + vals = { + 'state': 'done', + 'sync_date': fields.Datetime.now(), + } + attach.write(vals) attach.env.cr.commit() return True diff --git a/attachment_base_synchronize/security/ir.model.access.csv b/attachment_base_synchronize/security/ir.model.access.csv index 9b01638c441..a3628dbba29 100644 --- a/attachment_base_synchronize/security/ir.model.access.csv +++ b/attachment_base_synchronize/security/ir.model.access.csv @@ -1,2 +1,3 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -access_attachment_metadata_user,ir.attachment.metadata.user,model_ir_attachment_metadata,base.group_user,1,0,0,0 +access_attachment_metadata_user,ir.attachment.metadata.user,model_ir_attachment_metadata,,1,0,0,0 +access_attachment_metadata_user,ir.attachment.metadata.user,model_ir_attachment_metadata,base.group_no_one,1,1,1,1 diff --git a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py index 7ace252762d..a4f90abdfaf 100644 --- a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py +++ b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py @@ -2,9 +2,9 @@ # Copyright 2016 Angel Moya (http://angelmoya.es) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.tests.common import TransactionCase -import openerp -from openerp import api +from odoo.tests.common import TransactionCase +import odoo +from odoo import api class TestAttachmentBaseSynchronize(TransactionCase): @@ -31,7 +31,7 @@ def test_attachment_metadata(self): ) self.ir_attachment_metadata.run_attachment_metadata_scheduler() self.env.invalidate_all() - with openerp.registry(self.env.cr.dbname).cursor() as new_cr: + with odoo.registry(self.env.cr.dbname).cursor() as new_cr: new_env = api.Environment( new_cr, self.env.uid, self.env.context) attach = self.attachment.with_env(new_env) @@ -43,6 +43,10 @@ def test_attachment_metadata(self): def test_set_done(self): """Test set_done manually """ + self.assertEqual( + self.attachment.state, + 'pending' + ) self.attachment.set_done() self.assertEqual( self.attachment.state, diff --git a/attachment_base_synchronize/views/attachment_view.xml b/attachment_base_synchronize/views/attachment_view.xml index 7da173faf0a..28dfaf702a9 100644 --- a/attachment_base_synchronize/views/attachment_view.xml +++ b/attachment_base_synchronize/views/attachment_view.xml @@ -1,6 +1,5 @@ - - + ir.attachment.metadata @@ -108,5 +107,4 @@ sequence="20" action="action_attachment"/> - - + From c8c5928aa216b667c2f42708cf95ba39bdd45ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Fri, 7 Jul 2017 17:32:13 +0200 Subject: [PATCH 08/23] [FIX] website uri --- attachment_base_synchronize/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attachment_base_synchronize/__manifest__.py b/attachment_base_synchronize/__manifest__.py index 47bc7192952..6588796571a 100644 --- a/attachment_base_synchronize/__manifest__.py +++ b/attachment_base_synchronize/__manifest__.py @@ -6,7 +6,7 @@ 'name': 'Attachment Base Synchronize', 'version': '10.0.1.0.0', 'author': 'Akretion,Odoo Community Association (OCA)', - 'website': 'www.akretion.com', + 'website': 'https://www.akretion.com', 'license': 'AGPL-3', 'category': 'Generic Modules', 'depends': [ From a73ef2c1e10911aed1014d9a85695a5080a69d93 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 15 Jul 2017 10:36:44 +0200 Subject: [PATCH 09/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/am.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/ar.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/bg.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/bs.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/ca.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/cs.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/da.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/de.po | 299 +++++++++++------ attachment_base_synchronize/i18n/el_GR.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/en_GB.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es.po | 292 ++++++++++------ attachment_base_synchronize/i18n/es_AR.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_CL.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_CO.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_CR.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_DO.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_EC.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_ES.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_MX.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_PE.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_PY.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/es_VE.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/et.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/eu.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/fa.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/fi.po | 287 ++++++++++------ attachment_base_synchronize/i18n/fr.po | 66 ++-- attachment_base_synchronize/i18n/fr_CA.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/fr_CH.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/fr_FR.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/gl.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/gl_ES.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/he.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/hr.po | 330 +++++++++++++++++++ attachment_base_synchronize/i18n/hr_HR.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/hu.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/id.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/it.po | 287 ++++++++++------ attachment_base_synchronize/i18n/ja.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/ko.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/lt.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/lt_LT.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/lv.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/mk.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/mn.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/nb.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/nb_NO.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/nl.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/nl_BE.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/nl_NL.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/pl.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/pt.po | 330 +++++++++++++++++++ attachment_base_synchronize/i18n/pt_BR.po | 285 ++++++++++------ attachment_base_synchronize/i18n/pt_PT.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/ro.po | 330 +++++++++++++++++++ attachment_base_synchronize/i18n/ru.po | 295 +++++++++++------ attachment_base_synchronize/i18n/sk.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/sl.po | 306 +++++++++++------ attachment_base_synchronize/i18n/sr.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/sr@latin.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/sv.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/th.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/tr.po | 289 ++++++++++------ attachment_base_synchronize/i18n/tr_TR.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/uk.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/vi.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/vi_VN.po | 329 ++++++++++++++++++ attachment_base_synchronize/i18n/zh_CN.po | 295 +++++++++++------ attachment_base_synchronize/i18n/zh_TW.po | 329 ++++++++++++++++++ 69 files changed, 21169 insertions(+), 946 deletions(-) create mode 100644 attachment_base_synchronize/i18n/am.po create mode 100644 attachment_base_synchronize/i18n/ar.po create mode 100644 attachment_base_synchronize/i18n/bg.po create mode 100644 attachment_base_synchronize/i18n/bs.po create mode 100644 attachment_base_synchronize/i18n/ca.po create mode 100644 attachment_base_synchronize/i18n/cs.po create mode 100644 attachment_base_synchronize/i18n/da.po create mode 100644 attachment_base_synchronize/i18n/el_GR.po create mode 100644 attachment_base_synchronize/i18n/en_GB.po create mode 100644 attachment_base_synchronize/i18n/es_AR.po create mode 100644 attachment_base_synchronize/i18n/es_CL.po create mode 100644 attachment_base_synchronize/i18n/es_CO.po create mode 100644 attachment_base_synchronize/i18n/es_CR.po create mode 100644 attachment_base_synchronize/i18n/es_DO.po create mode 100644 attachment_base_synchronize/i18n/es_EC.po create mode 100644 attachment_base_synchronize/i18n/es_ES.po create mode 100644 attachment_base_synchronize/i18n/es_MX.po create mode 100644 attachment_base_synchronize/i18n/es_PE.po create mode 100644 attachment_base_synchronize/i18n/es_PY.po create mode 100644 attachment_base_synchronize/i18n/es_VE.po create mode 100644 attachment_base_synchronize/i18n/et.po create mode 100644 attachment_base_synchronize/i18n/eu.po create mode 100644 attachment_base_synchronize/i18n/fa.po create mode 100644 attachment_base_synchronize/i18n/fr_CA.po create mode 100644 attachment_base_synchronize/i18n/fr_CH.po create mode 100644 attachment_base_synchronize/i18n/fr_FR.po create mode 100644 attachment_base_synchronize/i18n/gl.po create mode 100644 attachment_base_synchronize/i18n/gl_ES.po create mode 100644 attachment_base_synchronize/i18n/he.po create mode 100644 attachment_base_synchronize/i18n/hr.po create mode 100644 attachment_base_synchronize/i18n/hr_HR.po create mode 100644 attachment_base_synchronize/i18n/hu.po create mode 100644 attachment_base_synchronize/i18n/id.po create mode 100644 attachment_base_synchronize/i18n/ja.po create mode 100644 attachment_base_synchronize/i18n/ko.po create mode 100644 attachment_base_synchronize/i18n/lt.po create mode 100644 attachment_base_synchronize/i18n/lt_LT.po create mode 100644 attachment_base_synchronize/i18n/lv.po create mode 100644 attachment_base_synchronize/i18n/mk.po create mode 100644 attachment_base_synchronize/i18n/mn.po create mode 100644 attachment_base_synchronize/i18n/nb.po create mode 100644 attachment_base_synchronize/i18n/nb_NO.po create mode 100644 attachment_base_synchronize/i18n/nl.po create mode 100644 attachment_base_synchronize/i18n/nl_BE.po create mode 100644 attachment_base_synchronize/i18n/nl_NL.po create mode 100644 attachment_base_synchronize/i18n/pl.po create mode 100644 attachment_base_synchronize/i18n/pt.po create mode 100644 attachment_base_synchronize/i18n/pt_PT.po create mode 100644 attachment_base_synchronize/i18n/ro.po create mode 100644 attachment_base_synchronize/i18n/sk.po create mode 100644 attachment_base_synchronize/i18n/sr.po create mode 100644 attachment_base_synchronize/i18n/sr@latin.po create mode 100644 attachment_base_synchronize/i18n/sv.po create mode 100644 attachment_base_synchronize/i18n/th.po create mode 100644 attachment_base_synchronize/i18n/tr_TR.po create mode 100644 attachment_base_synchronize/i18n/uk.po create mode 100644 attachment_base_synchronize/i18n/vi.po create mode 100644 attachment_base_synchronize/i18n/vi_VN.po create mode 100644 attachment_base_synchronize/i18n/zh_TW.po diff --git a/attachment_base_synchronize/i18n/am.po b/attachment_base_synchronize/i18n/am.po new file mode 100644 index 00000000000..a3f325e1e0a --- /dev/null +++ b/attachment_base_synchronize/i18n/am.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ar.po b/attachment_base_synchronize/i18n/ar.po new file mode 100644 index 00000000000..7bdb712c52f --- /dev/null +++ b/attachment_base_synchronize/i18n/ar.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "الوصف" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "المعرف" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "النوع" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/bg.po b/attachment_base_synchronize/i18n/bg.po new file mode 100644 index 00000000000..86f8d095c5d --- /dev/null +++ b/attachment_base_synchronize/i18n/bg.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Описание" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Вид" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/bs.po b/attachment_base_synchronize/i18n/bs.po new file mode 100644 index 00000000000..befb468241c --- /dev/null +++ b/attachment_base_synchronize/i18n/bs.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Opis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Vrsta" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ca.po b/attachment_base_synchronize/i18n/ca.po new file mode 100644 index 00000000000..36ee5d789b7 --- /dev/null +++ b/attachment_base_synchronize/i18n/ca.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripció" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estat" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipus" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/cs.po b/attachment_base_synchronize/i18n/cs.po new file mode 100644 index 00000000000..9612ea99d92 --- /dev/null +++ b/attachment_base_synchronize/i18n/cs.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Popis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Stav" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Druh" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/da.po b/attachment_base_synchronize/i18n/da.po new file mode 100644 index 00000000000..87dd671f117 --- /dev/null +++ b/attachment_base_synchronize/i18n/da.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Beskrivelse" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "Id" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Delstat" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/de.po b/attachment_base_synchronize/i18n/de.po index fe88b281c62..395a6fd050f 100644 --- a/attachment_base_synchronize/i18n/de.po +++ b/attachment_base_synchronize/i18n/de.po @@ -1,242 +1,331 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 +# Niki Waibel , 2017 +# Rudolf Schnapka , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" -msgstr "" +msgstr "Anhang" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" -msgstr "" +msgstr "Unternehmen" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Erstellt von" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Erstellt am:" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Beschreibung" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" +msgstr "Anzeigename" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" -msgstr "" +msgstr "Dateiname" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 -msgid "Last Modified on" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Zuletzt aktualisiert von" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Zuletzt aktualisiert am" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" +msgstr "Eigner" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "Ressourcen-ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Ressourcenname" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Status" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "Art" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" -msgstr "" +msgstr "URL" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/el_GR.po b/attachment_base_synchronize/i18n/el_GR.po new file mode 100644 index 00000000000..a9e94873c62 --- /dev/null +++ b/attachment_base_synchronize/i18n/el_GR.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Περιγραφή" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "Κωδικός" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Τύπος" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/en_GB.po b/attachment_base_synchronize/i18n/en_GB.po new file mode 100644 index 00000000000..989ecece4e1 --- /dev/null +++ b/attachment_base_synchronize/i18n/en_GB.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Created on" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Description" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es.po b/attachment_base_synchronize/i18n/es.po index 21d731b59fb..a7950eb5ad2 100644 --- a/attachment_base_synchronize/i18n/es.po +++ b/attachment_base_synchronize/i18n/es.po @@ -1,242 +1,330 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 +# Pedro M. Baeza , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: Pedro M. Baeza , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" -msgstr "" +msgstr "Compañía" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Creado por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Creado el" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Descripción" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" msgstr "Nombre a mostrar" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "Agrupar por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "Última actualización por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Última actualización por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Última actualización el" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "ID del recurso" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Nombre del recurso" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "Tipo" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" -msgstr "" +msgstr "URL" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_AR.po b/attachment_base_synchronize/i18n/es_AR.po new file mode 100644 index 00000000000..1e3c0da1036 --- /dev/null +++ b/attachment_base_synchronize/i18n/es_AR.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_CL.po b/attachment_base_synchronize/i18n/es_CL.po new file mode 100644 index 00000000000..c1e2933e6e8 --- /dev/null +++ b/attachment_base_synchronize/i18n/es_CL.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_CO.po b/attachment_base_synchronize/i18n/es_CO.po new file mode 100644 index 00000000000..c97a86d48b2 --- /dev/null +++ b/attachment_base_synchronize/i18n/es_CO.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_CR.po b/attachment_base_synchronize/i18n/es_CR.po new file mode 100644 index 00000000000..22b05e64c39 --- /dev/null +++ b/attachment_base_synchronize/i18n/es_CR.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_DO.po b/attachment_base_synchronize/i18n/es_DO.po new file mode 100644 index 00000000000..3314606ba6b --- /dev/null +++ b/attachment_base_synchronize/i18n/es_DO.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_EC.po b/attachment_base_synchronize/i18n/es_EC.po new file mode 100644 index 00000000000..c6d75dc5bcf --- /dev/null +++ b/attachment_base_synchronize/i18n/es_EC.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_ES.po b/attachment_base_synchronize/i18n/es_ES.po new file mode 100644 index 00000000000..2a89d82a488 --- /dev/null +++ b/attachment_base_synchronize/i18n/es_ES.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_MX.po b/attachment_base_synchronize/i18n/es_MX.po new file mode 100644 index 00000000000..7862d54b0fc --- /dev/null +++ b/attachment_base_synchronize/i18n/es_MX.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_PE.po b/attachment_base_synchronize/i18n/es_PE.po new file mode 100644 index 00000000000..1cbc696843d --- /dev/null +++ b/attachment_base_synchronize/i18n/es_PE.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_PY.po b/attachment_base_synchronize/i18n/es_PY.po new file mode 100644 index 00000000000..719d13ce33a --- /dev/null +++ b/attachment_base_synchronize/i18n/es_PY.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/es_VE.po b/attachment_base_synchronize/i18n/es_VE.po new file mode 100644 index 00000000000..a4b962bb73a --- /dev/null +++ b/attachment_base_synchronize/i18n/es_VE.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descripción" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Provincia" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/et.po b/attachment_base_synchronize/i18n/et.po new file mode 100644 index 00000000000..5ba6649757e --- /dev/null +++ b/attachment_base_synchronize/i18n/et.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Kirjeldus" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tüüp" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/eu.po b/attachment_base_synchronize/i18n/eu.po new file mode 100644 index 00000000000..b90064fc29c --- /dev/null +++ b/attachment_base_synchronize/i18n/eu.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Created on" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Deskribapena" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Mota" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fa.po b/attachment_base_synchronize/i18n/fa.po new file mode 100644 index 00000000000..a1ed2747d0b --- /dev/null +++ b/attachment_base_synchronize/i18n/fa.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "توصیف" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "شناسه" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "نوع" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fi.po b/attachment_base_synchronize/i18n/fi.po index d0f3507c357..1cd94de552a 100644 --- a/attachment_base_synchronize/i18n/fi.po +++ b/attachment_base_synchronize/i18n/fi.po @@ -1,242 +1,329 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-06 13:36+0000\n" -"Last-Translator: Jarmo Kortetjärvi \n" -"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Luonut" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Luotu" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Kuvaus" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" msgstr "Nimi" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Viimeksi päivittänyt" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Tila" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "Tyyppi" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fr.po b/attachment_base_synchronize/i18n/fr.po index e784e6897da..59c64f37054 100644 --- a/attachment_base_synchronize/i18n/fr.po +++ b/attachment_base_synchronize/i18n/fr.po @@ -1,19 +1,22 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_base_synchronize -# +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-10 16:34+0000\n" -"PO-Revision-Date: 2016-08-10 16:34+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -125,22 +128,32 @@ msgid "File Size" msgstr "Taille du fichier" #. module: attachment_base_synchronize -#: code:addons/attachment_base_synchronize/models/attachment.py:53 +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format -msgid "File corrupted: Something was wrong with the retrieved file, please relaunch the task." -msgstr "Fichier corrompu: Quelque chose s'est mal passé pendant la récupération du fichier, relancez la tache.." +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" +"Fichier corrompu: Quelque chose s'est mal passé pendant la récupération du " +"fichier, relancez la tache.." #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash -msgid "File hash comes from the external owner of the file.\n" +msgid "" +"File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." -msgstr "File hash comes from the external owner of the file.\n" +msgstr "" +"File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash -msgid "File hash computed with file data to be compared to external hash when provided." -msgstr "File hash computed with file data to be compared to external hash when provided." +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" +"File hash computed with file data to be compared to external hash when " +"provided." #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type @@ -278,18 +291,22 @@ msgstr "Sync date" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model -msgid "The database object this attachment will be attached to" -msgstr "L'objet de la base de données auquel cette pièce jointe sera attachée" +msgid "The database object this attachment will be attached to." +msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type -msgid "The file type determines an import method to be used to parse and transform data before their import in ERP or an export" -msgstr "Le type de fichier détermine la méthode d'import à utiliser pour parser le fichier et transformer les données avant l'import dans l'ERP" +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" +"Le type de fichier détermine la méthode d'import à utiliser pour parser le " +"fichier et transformer les données avant l'import dans l'ERP" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id -msgid "The record id this is attached to" -msgstr "L'identifiant de l'enregistrement qui y est attaché" +msgid "The record id this is attached to." +msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type @@ -309,11 +326,12 @@ msgstr "Url" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type -msgid "You can either upload a file from your computer or copy/paste an internet link to your file" -msgstr "Vous pouvez, soit télécharger un fichier à partir de votre ordinateur soit copier / coller un lien Internet vers votre fichier" +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" #. module: attachment_base_synchronize #: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata msgid "ir.attachment.metadata" msgstr "ir.attachment.metadata" - diff --git a/attachment_base_synchronize/i18n/fr_CA.po b/attachment_base_synchronize/i18n/fr_CA.po new file mode 100644 index 00000000000..f7d7178309a --- /dev/null +++ b/attachment_base_synchronize/i18n/fr_CA.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Description" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "Identifiant" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fr_CH.po b/attachment_base_synchronize/i18n/fr_CH.po new file mode 100644 index 00000000000..568b7d8e898 --- /dev/null +++ b/attachment_base_synchronize/i18n/fr_CH.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Etat" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/fr_FR.po b/attachment_base_synchronize/i18n/fr_FR.po new file mode 100644 index 00000000000..3e14ab738ce --- /dev/null +++ b/attachment_base_synchronize/i18n/fr_FR.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/gl.po b/attachment_base_synchronize/i18n/gl.po new file mode 100644 index 00000000000..4e31b55cd7d --- /dev/null +++ b/attachment_base_synchronize/i18n/gl.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descrición" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/gl_ES.po b/attachment_base_synchronize/i18n/gl_ES.po new file mode 100644 index 00000000000..816ab7f093c --- /dev/null +++ b/attachment_base_synchronize/i18n/gl_ES.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/he.po b/attachment_base_synchronize/i18n/he.po new file mode 100644 index 00000000000..5e0411bc3e0 --- /dev/null +++ b/attachment_base_synchronize/i18n/he.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "תיאור" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "מזהה" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "סוג" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/hr.po b/attachment_base_synchronize/i18n/hr.po new file mode 100644 index 00000000000..670135d825b --- /dev/null +++ b/attachment_base_synchronize/i18n/hr.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "Privitak" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "Naziv privitka" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "URL Privitka" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "ID privitka" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "Privitci" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "Binarno" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "Poduzeće" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "Mrjesec kreiranja" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "Podaci u bazi" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Opis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "Gotovo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "Greška" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "Neuspjelo" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "Sadržaj datoteke" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "Naziv datoteke" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "Veličina datoteke" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "Grupiraj po" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "Vlasnik" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Status" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tip" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "URL" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "ir.attachment.metadata" diff --git a/attachment_base_synchronize/i18n/hr_HR.po b/attachment_base_synchronize/i18n/hr_HR.po new file mode 100644 index 00000000000..3aea110a59d --- /dev/null +++ b/attachment_base_synchronize/i18n/hr_HR.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Opis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "Naziv datoteke" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Oblast/Županija" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tip" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/hu.po b/attachment_base_synchronize/i18n/hu.po new file mode 100644 index 00000000000..7728a992912 --- /dev/null +++ b/attachment_base_synchronize/i18n/hu.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Leírás" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Állapot" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Típus" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/id.po b/attachment_base_synchronize/i18n/id.po new file mode 100644 index 00000000000..699727ed998 --- /dev/null +++ b/attachment_base_synchronize/i18n/id.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Keterangan" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Jenis" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/it.po b/attachment_base_synchronize/i18n/it.po index 8cb84d9080c..c9af9287505 100644 --- a/attachment_base_synchronize/i18n/it.po +++ b/attachment_base_synchronize/i18n/it.po @@ -1,242 +1,329 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Created by" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Created on" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Descrizione" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "Nome del campo" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 -msgid "Last Modified on" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Last Updated by" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Last Updated on" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "Proprietario" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "ID Risorsa" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Nome della Risorsa" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Stato" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" msgstr "Tipo" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "URL" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ja.po b/attachment_base_synchronize/i18n/ja.po new file mode 100644 index 00000000000..d5e34f56330 --- /dev/null +++ b/attachment_base_synchronize/i18n/ja.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "作成日" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "説明" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "タイプ" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ko.po b/attachment_base_synchronize/i18n/ko.po new file mode 100644 index 00000000000..882175fb10f --- /dev/null +++ b/attachment_base_synchronize/i18n/ko.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "작성일" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "설명" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "유형" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/lt.po b/attachment_base_synchronize/i18n/lt.po new file mode 100644 index 00000000000..a5668fd8c82 --- /dev/null +++ b/attachment_base_synchronize/i18n/lt.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Aprašymas" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipas" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/lt_LT.po b/attachment_base_synchronize/i18n/lt_LT.po new file mode 100644 index 00000000000..2f6c7de8c98 --- /dev/null +++ b/attachment_base_synchronize/i18n/lt_LT.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/lv.po b/attachment_base_synchronize/i18n/lv.po new file mode 100644 index 00000000000..747106254f9 --- /dev/null +++ b/attachment_base_synchronize/i18n/lv.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Apraksts" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tips" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/mk.po b/attachment_base_synchronize/i18n/mk.po new file mode 100644 index 00000000000..1d0b4352766 --- /dev/null +++ b/attachment_base_synchronize/i18n/mk.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Опис" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Тип" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/mn.po b/attachment_base_synchronize/i18n/mn.po new file mode 100644 index 00000000000..460ecaf02e9 --- /dev/null +++ b/attachment_base_synchronize/i18n/mn.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Тодорхойлолт" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Төрөл" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/nb.po b/attachment_base_synchronize/i18n/nb.po new file mode 100644 index 00000000000..19c5862f164 --- /dev/null +++ b/attachment_base_synchronize/i18n/nb.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Beskrivelse" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Status" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/nb_NO.po b/attachment_base_synchronize/i18n/nb_NO.po new file mode 100644 index 00000000000..c3340b2be8c --- /dev/null +++ b/attachment_base_synchronize/i18n/nb_NO.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Stat" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/nl.po b/attachment_base_synchronize/i18n/nl.po new file mode 100644 index 00000000000..b2b57f8e7a1 --- /dev/null +++ b/attachment_base_synchronize/i18n/nl.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Omschrijving" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Staat/Provincie" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/nl_BE.po b/attachment_base_synchronize/i18n/nl_BE.po new file mode 100644 index 00000000000..e908f489daa --- /dev/null +++ b/attachment_base_synchronize/i18n/nl_BE.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Omschrijving" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/nl_NL.po b/attachment_base_synchronize/i18n/nl_NL.po new file mode 100644 index 00000000000..2f591884e38 --- /dev/null +++ b/attachment_base_synchronize/i18n/nl_NL.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Omschrijving" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "Bestandsnaam" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/pl.po b/attachment_base_synchronize/i18n/pl.po new file mode 100644 index 00000000000..293b44c1dd0 --- /dev/null +++ b/attachment_base_synchronize/i18n/pl.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Opis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Stan" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Typ" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/pt.po b/attachment_base_synchronize/i18n/pt.po new file mode 100644 index 00000000000..3b549d18aa1 --- /dev/null +++ b/attachment_base_synchronize/i18n/pt.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# Pedro Castro Silva , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "Empresa" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descrição" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/pt_BR.po b/attachment_base_synchronize/i18n/pt_BR.po index baa497c5c4b..9623a01ccc1 100644 --- a/attachment_base_synchronize/i18n/pt_BR.po +++ b/attachment_base_synchronize/i18n/pt_BR.po @@ -1,242 +1,329 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Criado por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Criado em" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Descrição" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" msgstr "Nome para Mostrar" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "Agrupado por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "Identificação" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "Última atualização em" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Última atualização por" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Última atualização em" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "Identificação do Recurso" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Nome do Recurso" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" msgstr "Tipo" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/pt_PT.po b/attachment_base_synchronize/i18n/pt_PT.po new file mode 100644 index 00000000000..6b4131ccb72 --- /dev/null +++ b/attachment_base_synchronize/i18n/pt_PT.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descrição" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Estado" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tipo" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ro.po b/attachment_base_synchronize/i18n/ro.po new file mode 100644 index 00000000000..ffdb6cce161 --- /dev/null +++ b/attachment_base_synchronize/i18n/ro.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +# Daniel Schweiger , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: Daniel Schweiger , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Descriere" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "Resursa ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "Resursa Nume" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Tara" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tip" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/ru.po b/attachment_base_synchronize/i18n/ru.po index 8c6104c8fdb..49c084a49a8 100644 --- a/attachment_base_synchronize/i18n/ru.po +++ b/attachment_base_synchronize/i18n/ru.po @@ -1,242 +1,329 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: Russian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ru/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" -msgstr "" +msgstr "Создано" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" -msgstr "" +msgstr "Создан" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Описание" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Последний раз обновлено" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" -msgstr "" +msgstr "Последний раз обновлено" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "Тип" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/sk.po b/attachment_base_synchronize/i18n/sk.po new file mode 100644 index 00000000000..e97a2bddf12 --- /dev/null +++ b/attachment_base_synchronize/i18n/sk.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Popis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Typ" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/sl.po b/attachment_base_synchronize/i18n/sl.po index 4f442cec3e1..cbd59034764 100644 --- a/attachment_base_synchronize/i18n/sl.po +++ b/attachment_base_synchronize/i18n/sl.po @@ -1,243 +1,335 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: -# Matjaž Mozetič , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:49+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "Priponka" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "Naziv priponke" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "ID priponke" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "Priponke" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "Binarno" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" -msgstr "Binarna datoteka ali URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "Družba" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Ustvaril" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Ustvarjeno" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "Mesec nastanka" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "Podatki o podatkovni bazi" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Opis" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" msgstr "Prikazni naziv" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "Zunanji hash" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "Vsebina datoteke" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "Naziv datoteke" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "Velikost datoteke" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." -msgstr "Datoteka okvarjena: Nekaj je narobe s pridobljeno datoteko. Ponovno zaženite opravilo, prosim." +msgstr "" +"Datoteka okvarjena: Nekaj je narobe s pridobljeno datoteko. Ponovno zaženite" +" opravilo, prosim." -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." -msgstr "Hash datoteke prihaja z zunanjim lastnikom datoteke.\nČe je podano, omogoča preverjanje, če je prenesena datoteke natančna kopija originalne." +msgstr "" +"Hash datoteke prihaja z zunanjim lastnikom datoteke.\n" +"Če je podano, omogoča preverjanje, če je prenesena datoteke natančna kopija originalne." -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." -msgstr "Hash datoteke obdelan s podatki o datoteki za primerjavo z zunanjim hash (če je podan)." +msgstr "" +"Hash datoteke obdelan s podatki o datoteki za primerjavo z zunanjim hash (če" +" je podan)." -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "Tip datoteke" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "Filtriraj po mojih dokumentih" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "Združi po" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "Interni hash" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "Zadnjič spremenjeno" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Zadnji posodobil" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "Povezava do ir.attachment model " -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "Metadata priponk" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "Moji dokumenti" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "Lastnik" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "ID vira" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "Model vira" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Naziv vira" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Stanje" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "Shranjeni naziv datoteke" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" -msgstr "Objekt podatkovne baze, kamor se bo priponka pripela" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" -msgstr "Tip datoteke določa metodo uvoza, ki se bo uporabila za razčlenjevanje in pretvorbo podatkov pred uvozom v ERP" +"data before their import in ERP or an export" +msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" -msgstr "ID zapisa, kamor je to pripeto" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" msgstr "Tip" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "URL" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "URL" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/sr.po b/attachment_base_synchronize/i18n/sr.po new file mode 100644 index 00000000000..7ffa5531947 --- /dev/null +++ b/attachment_base_synchronize/i18n/sr.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Opis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tip" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/sr@latin.po b/attachment_base_synchronize/i18n/sr@latin.po new file mode 100644 index 00000000000..e75a9a664be --- /dev/null +++ b/attachment_base_synchronize/i18n/sr@latin.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Opis" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tip" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/sv.po b/attachment_base_synchronize/i18n/sv.po new file mode 100644 index 00000000000..d7fde6ea3c5 --- /dev/null +++ b/attachment_base_synchronize/i18n/sv.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Beskrivning" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Status" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Typ" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/th.po b/attachment_base_synchronize/i18n/th.po new file mode 100644 index 00000000000..354948f872d --- /dev/null +++ b/attachment_base_synchronize/i18n/th.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "รายละเอียด" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "รหัส" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "ชนิด" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/tr.po b/attachment_base_synchronize/i18n/tr.po index 3d0d6b51fce..4c9c43b3444 100644 --- a/attachment_base_synchronize/i18n/tr.po +++ b/attachment_base_synchronize/i18n/tr.po @@ -1,242 +1,329 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Oluşturan" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Oluşturuldu" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Açıklama" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" +msgstr "Görünen İsim" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "Dosya adı" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "Grupla" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 -msgid "Last Modified on" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Son güncelleyen" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Son güncellenme" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "Kaynak ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Kaynak Adı" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Durum" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "Tür" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/tr_TR.po b/attachment_base_synchronize/i18n/tr_TR.po new file mode 100644 index 00000000000..36ca6b6fb0f --- /dev/null +++ b/attachment_base_synchronize/i18n/tr_TR.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Açıklama" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "Kimlik" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "Hal" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Tip" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/uk.po b/attachment_base_synchronize/i18n/uk.po new file mode 100644 index 00000000000..4657e0cfbe7 --- /dev/null +++ b/attachment_base_synchronize/i18n/uk.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Опис" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Тип" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/vi.po b/attachment_base_synchronize/i18n/vi.po new file mode 100644 index 00000000000..9d10dc4be2d --- /dev/null +++ b/attachment_base_synchronize/i18n/vi.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Miêu tả" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "Loại" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/vi_VN.po b/attachment_base_synchronize/i18n/vi_VN.po new file mode 100644 index 00000000000..32c50d7a7e7 --- /dev/null +++ b/attachment_base_synchronize/i18n/vi_VN.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "Mô tả" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "ID" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/zh_CN.po b/attachment_base_synchronize/i18n/zh_CN.po index 74aa3c2dcc2..f8aee8ad5af 100644 --- a/attachment_base_synchronize/i18n/zh_CN.po +++ b/attachment_base_synchronize/i18n/zh_CN.po @@ -1,242 +1,329 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * attachment_metadata +# * attachment_base_synchronize # # Translators: +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-09 18:30+0000\n" -"PO-Revision-Date: 2016-06-01 09:37+0000\n" -"Last-Translator: <>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" -msgstr "" +msgstr "附件" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" -msgstr "" +msgstr "公司" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "创建者" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "创建时间" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" -msgstr "" +msgstr "Description" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" +msgstr "显示名称" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" "If provided allow to check than downloaded file is the exact copy of the original file." msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 -msgid "Last Modified on" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "最后更新者" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "上次更新日期" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "" -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" +msgstr "所有者" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "状态" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type msgid "" "The file type determines an import method to be used to parse and transform " -"data before their import in ERP" +"data before their import in ERP or an export" msgstr "" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "类型" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" diff --git a/attachment_base_synchronize/i18n/zh_TW.po b/attachment_base_synchronize/i18n/zh_TW.po new file mode 100644 index 00000000000..bdc5504e4ac --- /dev/null +++ b/attachment_base_synchronize/i18n/zh_TW.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 00:59+0000\n" +"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "建立於" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "說明" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "" +"File corrupted: Something was wrong with the retrieved file, please relaunch" +" the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "" +"File hash computed with file data to be compared to external hash when " +"provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "編號" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "" +"The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "類型" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" From 184174cd60087e5f6e8706961b8f33d2d4e61fbc Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 29 Jul 2017 10:34:59 +0200 Subject: [PATCH 10/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/nl_NL.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/attachment_base_synchronize/i18n/nl_NL.po b/attachment_base_synchronize/i18n/nl_NL.po index 2f591884e38..124731c21c2 100644 --- a/attachment_base_synchronize/i18n/nl_NL.po +++ b/attachment_base_synchronize/i18n/nl_NL.po @@ -3,14 +3,15 @@ # * attachment_base_synchronize # # Translators: -# Peter Hageman , 2017 +# OCA Transbot , 2017 +# Erwin van der Ploeg , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" -"Last-Translator: Peter Hageman , 2017\n" +"POT-Creation-Date: 2017-07-26 11:57+0000\n" +"PO-Revision-Date: 2017-07-26 11:57+0000\n" +"Last-Translator: Erwin van der Ploeg , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +59,7 @@ msgstr "" #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" -msgstr "" +msgstr "Bedrijf" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid @@ -304,7 +305,7 @@ msgstr "" #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" -msgstr "" +msgstr "Type" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search From e4f5a56ccae370c3a29229405f8d2a38394355f6 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 5 Aug 2017 10:27:31 +0200 Subject: [PATCH 11/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/ca.po | 6 +++--- attachment_base_synchronize/i18n/de.po | 10 ++++------ attachment_base_synchronize/i18n/es.po | 9 ++++----- attachment_base_synchronize/i18n/fi.po | 6 +++--- attachment_base_synchronize/i18n/it.po | 6 +++--- attachment_base_synchronize/i18n/pt_BR.po | 6 +++--- attachment_base_synchronize/i18n/sl.po | 6 +++--- attachment_base_synchronize/i18n/tr.po | 6 +++--- 8 files changed, 26 insertions(+), 29 deletions(-) diff --git a/attachment_base_synchronize/i18n/ca.po b/attachment_base_synchronize/i18n/ca.po index 36ee5d789b7..4dbf6683425 100644 --- a/attachment_base_synchronize/i18n/ca.po +++ b/attachment_base_synchronize/i18n/ca.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Fracassat" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/de.po b/attachment_base_synchronize/i18n/de.po index 395a6fd050f..a578ee3b22e 100644 --- a/attachment_base_synchronize/i18n/de.po +++ b/attachment_base_synchronize/i18n/de.po @@ -4,15 +4,13 @@ # # Translators: # OCA Transbot , 2017 -# Niki Waibel , 2017 -# Rudolf Schnapka , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" -"Last-Translator: Rudolf Schnapka , 2017\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Gescheitert" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/es.po b/attachment_base_synchronize/i18n/es.po index a7950eb5ad2..1469d290a8b 100644 --- a/attachment_base_synchronize/i18n/es.po +++ b/attachment_base_synchronize/i18n/es.po @@ -4,14 +4,13 @@ # # Translators: # OCA Transbot , 2017 -# Pedro M. Baeza , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" -"Last-Translator: Pedro M. Baeza , 2017\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -111,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Fallido" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/fi.po b/attachment_base_synchronize/i18n/fi.po index 1cd94de552a..245acf8c039 100644 --- a/attachment_base_synchronize/i18n/fi.po +++ b/attachment_base_synchronize/i18n/fi.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Epäonnistunut" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/it.po b/attachment_base_synchronize/i18n/it.po index c9af9287505..52c90571db7 100644 --- a/attachment_base_synchronize/i18n/it.po +++ b/attachment_base_synchronize/i18n/it.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Fallita" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/pt_BR.po b/attachment_base_synchronize/i18n/pt_BR.po index 9623a01ccc1..39c250d25a2 100644 --- a/attachment_base_synchronize/i18n/pt_BR.po +++ b/attachment_base_synchronize/i18n/pt_BR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Falhou" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/sl.po b/attachment_base_synchronize/i18n/sl.po index cbd59034764..e747a18b424 100644 --- a/attachment_base_synchronize/i18n/sl.po +++ b/attachment_base_synchronize/i18n/sl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "Zunanji hash" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Neuspešno" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas diff --git a/attachment_base_synchronize/i18n/tr.po b/attachment_base_synchronize/i18n/tr.po index 4c9c43b3444..696a8f67e04 100644 --- a/attachment_base_synchronize/i18n/tr.po +++ b/attachment_base_synchronize/i18n/tr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" @@ -110,7 +110,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Başarısız" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas From 1577e614acc78f13846f982783187febe21eebaf Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Dec 2017 12:26:41 +0100 Subject: [PATCH 12/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/ar.po | 6 ++-- attachment_base_synchronize/i18n/bg.po | 6 ++-- attachment_base_synchronize/i18n/bs.po | 6 ++-- attachment_base_synchronize/i18n/ca.po | 6 ++-- attachment_base_synchronize/i18n/cs.po | 6 ++-- attachment_base_synchronize/i18n/da.po | 6 ++-- attachment_base_synchronize/i18n/de.po | 10 +++--- attachment_base_synchronize/i18n/el_GR.po | 6 ++-- attachment_base_synchronize/i18n/en_GB.po | 6 ++-- attachment_base_synchronize/i18n/es_AR.po | 6 ++-- attachment_base_synchronize/i18n/es_CL.po | 6 ++-- attachment_base_synchronize/i18n/es_CO.po | 6 ++-- attachment_base_synchronize/i18n/es_CR.po | 6 ++-- attachment_base_synchronize/i18n/es_DO.po | 6 ++-- attachment_base_synchronize/i18n/es_EC.po | 6 ++-- attachment_base_synchronize/i18n/es_MX.po | 6 ++-- attachment_base_synchronize/i18n/es_PE.po | 6 ++-- attachment_base_synchronize/i18n/es_PY.po | 6 ++-- attachment_base_synchronize/i18n/es_VE.po | 6 ++-- attachment_base_synchronize/i18n/et.po | 6 ++-- attachment_base_synchronize/i18n/eu.po | 6 ++-- attachment_base_synchronize/i18n/fa.po | 6 ++-- attachment_base_synchronize/i18n/fi.po | 6 ++-- attachment_base_synchronize/i18n/fr.po | 25 +++++++------- attachment_base_synchronize/i18n/gl.po | 6 ++-- attachment_base_synchronize/i18n/he.po | 6 ++-- attachment_base_synchronize/i18n/hr_HR.po | 6 ++-- attachment_base_synchronize/i18n/hu.po | 6 ++-- attachment_base_synchronize/i18n/id.po | 6 ++-- attachment_base_synchronize/i18n/it.po | 6 ++-- attachment_base_synchronize/i18n/ja.po | 6 ++-- attachment_base_synchronize/i18n/ko.po | 6 ++-- attachment_base_synchronize/i18n/lt.po | 6 ++-- attachment_base_synchronize/i18n/lv.po | 6 ++-- attachment_base_synchronize/i18n/mk.po | 6 ++-- attachment_base_synchronize/i18n/mn.po | 6 ++-- attachment_base_synchronize/i18n/nb.po | 6 ++-- attachment_base_synchronize/i18n/nb_NO.po | 6 ++-- attachment_base_synchronize/i18n/nl.po | 6 ++-- attachment_base_synchronize/i18n/nl_BE.po | 6 ++-- attachment_base_synchronize/i18n/nl_NL.po | 34 ++++++++++---------- attachment_base_synchronize/i18n/pl.po | 6 ++-- attachment_base_synchronize/i18n/pt.po | 16 ++++----- attachment_base_synchronize/i18n/ro.po | 6 ++-- attachment_base_synchronize/i18n/sk.po | 6 ++-- attachment_base_synchronize/i18n/sr.po | 6 ++-- attachment_base_synchronize/i18n/sr@latin.po | 8 ++--- attachment_base_synchronize/i18n/sv.po | 6 ++-- attachment_base_synchronize/i18n/th.po | 6 ++-- attachment_base_synchronize/i18n/tr_TR.po | 6 ++-- attachment_base_synchronize/i18n/uk.po | 6 ++-- attachment_base_synchronize/i18n/vi.po | 6 ++-- attachment_base_synchronize/i18n/zh_CN.po | 17 +++++----- attachment_base_synchronize/i18n/zh_TW.po | 6 ++-- 54 files changed, 202 insertions(+), 196 deletions(-) diff --git a/attachment_base_synchronize/i18n/ar.po b/attachment_base_synchronize/i18n/ar.po index 7bdb712c52f..1920e23a4a0 100644 --- a/attachment_base_synchronize/i18n/ar.po +++ b/attachment_base_synchronize/i18n/ar.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "تجميع حسب" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/bg.po b/attachment_base_synchronize/i18n/bg.po index 86f8d095c5d..bd0fcf3f0d3 100644 --- a/attachment_base_synchronize/i18n/bg.po +++ b/attachment_base_synchronize/i18n/bg.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Групирай По" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/bs.po b/attachment_base_synchronize/i18n/bs.po index befb468241c..4248bb8161b 100644 --- a/attachment_base_synchronize/i18n/bs.po +++ b/attachment_base_synchronize/i18n/bs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupiši po" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/ca.po b/attachment_base_synchronize/i18n/ca.po index 4dbf6683425..0c937b3fe12 100644 --- a/attachment_base_synchronize/i18n/ca.po +++ b/attachment_base_synchronize/i18n/ca.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 02:43+0000\n" -"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupa Per" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/cs.po b/attachment_base_synchronize/i18n/cs.po index 9612ea99d92..36a167a238f 100644 --- a/attachment_base_synchronize/i18n/cs.po +++ b/attachment_base_synchronize/i18n/cs.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Seskupit podle" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/da.po b/attachment_base_synchronize/i18n/da.po index 87dd671f117..f92d3f3ba89 100644 --- a/attachment_base_synchronize/i18n/da.po +++ b/attachment_base_synchronize/i18n/da.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Gruppér efter" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/de.po b/attachment_base_synchronize/i18n/de.po index a578ee3b22e..5b025052c28 100644 --- a/attachment_base_synchronize/i18n/de.po +++ b/attachment_base_synchronize/i18n/de.po @@ -4,13 +4,15 @@ # # Translators: # OCA Transbot , 2017 +# Niki Waibel , 2017 +# Rudolf Schnapka , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 02:43+0000\n" -"PO-Revision-Date: 2017-08-01 02:43+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,7 +165,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Gruppieren nach" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/el_GR.po b/attachment_base_synchronize/i18n/el_GR.po index a9e94873c62..5cc54dc608f 100644 --- a/attachment_base_synchronize/i18n/el_GR.po +++ b/attachment_base_synchronize/i18n/el_GR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Ομαδοποίηση Ανά" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/en_GB.po b/attachment_base_synchronize/i18n/en_GB.po index 989ecece4e1..7bae5b44850 100644 --- a/attachment_base_synchronize/i18n/en_GB.po +++ b/attachment_base_synchronize/i18n/en_GB.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Group By" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_AR.po b/attachment_base_synchronize/i18n/es_AR.po index 1e3c0da1036..c11252bff32 100644 --- a/attachment_base_synchronize/i18n/es_AR.po +++ b/attachment_base_synchronize/i18n/es_AR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_CL.po b/attachment_base_synchronize/i18n/es_CL.po index c1e2933e6e8..3768a07ee65 100644 --- a/attachment_base_synchronize/i18n/es_CL.po +++ b/attachment_base_synchronize/i18n/es_CL.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_CO.po b/attachment_base_synchronize/i18n/es_CO.po index c97a86d48b2..e1d732aaf96 100644 --- a/attachment_base_synchronize/i18n/es_CO.po +++ b/attachment_base_synchronize/i18n/es_CO.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_CR.po b/attachment_base_synchronize/i18n/es_CR.po index 22b05e64c39..67d0ee78d66 100644 --- a/attachment_base_synchronize/i18n/es_CR.po +++ b/attachment_base_synchronize/i18n/es_CR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_DO.po b/attachment_base_synchronize/i18n/es_DO.po index 3314606ba6b..6845f6e7182 100644 --- a/attachment_base_synchronize/i18n/es_DO.po +++ b/attachment_base_synchronize/i18n/es_DO.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_EC.po b/attachment_base_synchronize/i18n/es_EC.po index c6d75dc5bcf..7922322c6b5 100644 --- a/attachment_base_synchronize/i18n/es_EC.po +++ b/attachment_base_synchronize/i18n/es_EC.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_MX.po b/attachment_base_synchronize/i18n/es_MX.po index 7862d54b0fc..5f424a7b7df 100644 --- a/attachment_base_synchronize/i18n/es_MX.po +++ b/attachment_base_synchronize/i18n/es_MX.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_PE.po b/attachment_base_synchronize/i18n/es_PE.po index 1cbc696843d..5b226d1ad05 100644 --- a/attachment_base_synchronize/i18n/es_PE.po +++ b/attachment_base_synchronize/i18n/es_PE.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupado por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_PY.po b/attachment_base_synchronize/i18n/es_PY.po index 719d13ce33a..108d03c3753 100644 --- a/attachment_base_synchronize/i18n/es_PY.po +++ b/attachment_base_synchronize/i18n/es_PY.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupado por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/es_VE.po b/attachment_base_synchronize/i18n/es_VE.po index a4b962bb73a..29b7eea8c84 100644 --- a/attachment_base_synchronize/i18n/es_VE.po +++ b/attachment_base_synchronize/i18n/es_VE.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/et.po b/attachment_base_synchronize/i18n/et.po index 5ba6649757e..87b80621a66 100644 --- a/attachment_base_synchronize/i18n/et.po +++ b/attachment_base_synchronize/i18n/et.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Rühmitamine" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/eu.po b/attachment_base_synchronize/i18n/eu.po index b90064fc29c..e0d6488f2e2 100644 --- a/attachment_base_synchronize/i18n/eu.po +++ b/attachment_base_synchronize/i18n/eu.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Group By" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/fa.po b/attachment_base_synchronize/i18n/fa.po index a1ed2747d0b..b908770c8c0 100644 --- a/attachment_base_synchronize/i18n/fa.po +++ b/attachment_base_synchronize/i18n/fa.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "گروه‌بندی برمبنای" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/fi.po b/attachment_base_synchronize/i18n/fi.po index 245acf8c039..9b0df28e6f1 100644 --- a/attachment_base_synchronize/i18n/fi.po +++ b/attachment_base_synchronize/i18n/fi.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 02:43+0000\n" -"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Ryhmittele" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/fr.po b/attachment_base_synchronize/i18n/fr.po index 59c64f37054..f811d438642 100644 --- a/attachment_base_synchronize/i18n/fr.po +++ b/attachment_base_synchronize/i18n/fr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# Nicolas JEUDY , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"Last-Translator: Nicolas JEUDY , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,7 +89,7 @@ msgstr "Description" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" -msgstr "Afficher le nom" +msgstr "Nom affiché" #. module: attachment_base_synchronize #: selection:ir.attachment.metadata,state:0 @@ -110,7 +111,7 @@ msgstr "Empreinte externe" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "Échec" +msgstr "Echoué" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas @@ -169,12 +170,12 @@ msgstr "Filtrer sur mes documents" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "Regrouper par" +msgstr "Grouper par" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" -msgstr "Identifiant" +msgstr "ID" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content @@ -199,12 +200,12 @@ msgstr "Dernière modification le" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" -msgstr "Dernière mise à jour par" +msgstr "Mis à jour par" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" -msgstr "Dernière mise à jour le" +msgstr "Mis à jour le" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id @@ -292,7 +293,7 @@ msgstr "Sync date" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "The database object this attachment will be attached to." -msgstr "" +msgstr "Modèle associé à la pièce jointe" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type @@ -306,7 +307,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "The record id this is attached to." -msgstr "" +msgstr "Id de l'enregistrement associé à la pièce jointe" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type @@ -330,6 +331,8 @@ msgid "" "You can either upload a file from your computer or copy/paste an internet " "link to your file." msgstr "" +"Vous pouvez soit importer un fichier de votre ordinateur soit copier/coller " +"un lien internet vers votre fichier." #. module: attachment_base_synchronize #: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata diff --git a/attachment_base_synchronize/i18n/gl.po b/attachment_base_synchronize/i18n/gl.po index 4e31b55cd7d..ec0fd5cadb3 100644 --- a/attachment_base_synchronize/i18n/gl.po +++ b/attachment_base_synchronize/i18n/gl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/he.po b/attachment_base_synchronize/i18n/he.po index 5e0411bc3e0..5a3712d592a 100644 --- a/attachment_base_synchronize/i18n/he.po +++ b/attachment_base_synchronize/i18n/he.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "קבץ לפי" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/hr_HR.po b/attachment_base_synchronize/i18n/hr_HR.po index 3aea110a59d..433e1754ad7 100644 --- a/attachment_base_synchronize/i18n/hr_HR.po +++ b/attachment_base_synchronize/i18n/hr_HR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Prupiraj po" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/hu.po b/attachment_base_synchronize/i18n/hu.po index 7728a992912..c4ee7d19834 100644 --- a/attachment_base_synchronize/i18n/hu.po +++ b/attachment_base_synchronize/i18n/hu.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Csoportosítás..." #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/id.po b/attachment_base_synchronize/i18n/id.po index 699727ed998..e2a4c6d8303 100644 --- a/attachment_base_synchronize/i18n/id.po +++ b/attachment_base_synchronize/i18n/id.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Dikelompokan berdasarkan .." #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/it.po b/attachment_base_synchronize/i18n/it.po index 52c90571db7..6ed92f65d26 100644 --- a/attachment_base_synchronize/i18n/it.po +++ b/attachment_base_synchronize/i18n/it.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 02:43+0000\n" -"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Raggruppa per" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/ja.po b/attachment_base_synchronize/i18n/ja.po index d5e34f56330..b7493b6c4dc 100644 --- a/attachment_base_synchronize/i18n/ja.po +++ b/attachment_base_synchronize/i18n/ja.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "グループ化" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/ko.po b/attachment_base_synchronize/i18n/ko.po index 882175fb10f..f8801c79ebe 100644 --- a/attachment_base_synchronize/i18n/ko.po +++ b/attachment_base_synchronize/i18n/ko.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "그룹화" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/lt.po b/attachment_base_synchronize/i18n/lt.po index a5668fd8c82..fa6c9981e7b 100644 --- a/attachment_base_synchronize/i18n/lt.po +++ b/attachment_base_synchronize/i18n/lt.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupuoti pagal" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/lv.po b/attachment_base_synchronize/i18n/lv.po index 747106254f9..85703b13fab 100644 --- a/attachment_base_synchronize/i18n/lv.po +++ b/attachment_base_synchronize/i18n/lv.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupēt pēc" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/mk.po b/attachment_base_synchronize/i18n/mk.po index 1d0b4352766..0fef1f75a42 100644 --- a/attachment_base_synchronize/i18n/mk.po +++ b/attachment_base_synchronize/i18n/mk.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Групирај по" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/mn.po b/attachment_base_synchronize/i18n/mn.po index 460ecaf02e9..9600dc79bd8 100644 --- a/attachment_base_synchronize/i18n/mn.po +++ b/attachment_base_synchronize/i18n/mn.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Бүлэглэх" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/nb.po b/attachment_base_synchronize/i18n/nb.po index 19c5862f164..5833c851ab6 100644 --- a/attachment_base_synchronize/i18n/nb.po +++ b/attachment_base_synchronize/i18n/nb.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupper etter" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/nb_NO.po b/attachment_base_synchronize/i18n/nb_NO.po index c3340b2be8c..417128012c6 100644 --- a/attachment_base_synchronize/i18n/nb_NO.po +++ b/attachment_base_synchronize/i18n/nb_NO.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Gruppe laget av" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/nl.po b/attachment_base_synchronize/i18n/nl.po index b2b57f8e7a1..c4dd4f18b63 100644 --- a/attachment_base_synchronize/i18n/nl.po +++ b/attachment_base_synchronize/i18n/nl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Groepeer op" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/nl_BE.po b/attachment_base_synchronize/i18n/nl_BE.po index e908f489daa..b494740a236 100644 --- a/attachment_base_synchronize/i18n/nl_BE.po +++ b/attachment_base_synchronize/i18n/nl_BE.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Groeperen op" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/nl_NL.po b/attachment_base_synchronize/i18n/nl_NL.po index 124731c21c2..8dcb5c6d954 100644 --- a/attachment_base_synchronize/i18n/nl_NL.po +++ b/attachment_base_synchronize/i18n/nl_NL.po @@ -3,15 +3,15 @@ # * attachment_base_synchronize # # Translators: -# OCA Transbot , 2017 # Erwin van der Ploeg , 2017 +# Peter Hageman , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-26 11:57+0000\n" -"PO-Revision-Date: 2017-07-26 11:57+0000\n" -"Last-Translator: Erwin van der Ploeg , 2017\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"Last-Translator: Peter Hageman , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,28 +22,28 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" -msgstr "" +msgstr "Bijlage" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" -msgstr "" +msgstr "Bijlagenaam" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url msgid "Attachment URL" -msgstr "" +msgstr "Bijlage URL" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" -msgstr "" +msgstr "Bijlage ID" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" -msgstr "" +msgstr "Bijlages" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -95,12 +95,12 @@ msgstr "weergavenaam" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Done" -msgstr "" +msgstr "Gereed" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form msgid "Error" -msgstr "" +msgstr "Fout" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash @@ -111,7 +111,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Mislukt" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas @@ -126,7 +126,7 @@ msgstr "Bestandsnaam" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" -msgstr "" +msgstr "Bestandsgrootte" #. module: attachment_base_synchronize #: code:addons/attachment_base_synchronize/models/attachment.py:54 @@ -164,7 +164,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Groeperen op" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id @@ -225,7 +225,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" -msgstr "" +msgstr "Eigenaar" #. module: attachment_base_synchronize #: selection:ir.attachment.metadata,state:0 @@ -310,12 +310,12 @@ msgstr "Type" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" -msgstr "" +msgstr "URL" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" -msgstr "" +msgstr "Url" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type diff --git a/attachment_base_synchronize/i18n/pl.po b/attachment_base_synchronize/i18n/pl.po index 293b44c1dd0..7f283cc012e 100644 --- a/attachment_base_synchronize/i18n/pl.po +++ b/attachment_base_synchronize/i18n/pl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Pogrupuj wg" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/pt.po b/attachment_base_synchronize/i18n/pt.po index 3b549d18aa1..00b2ffb761a 100644 --- a/attachment_base_synchronize/i18n/pt.po +++ b/attachment_base_synchronize/i18n/pt.po @@ -3,15 +3,15 @@ # * attachment_base_synchronize # # Translators: -# Pedro Castro Silva , 2017 # OCA Transbot , 2017 +# Pedro Castro Silva , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,7 +164,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id @@ -189,17 +189,17 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" -msgstr "Última Modificação em" +msgstr "Última Modificação Em" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" -msgstr "Atualizado pela última vez por" +msgstr "Última Modificação Por" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" -msgstr "Atualizado pela última vez em" +msgstr "Última Atualização Em" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id diff --git a/attachment_base_synchronize/i18n/ro.po b/attachment_base_synchronize/i18n/ro.po index ffdb6cce161..79d994d454c 100644 --- a/attachment_base_synchronize/i18n/ro.po +++ b/attachment_base_synchronize/i18n/ro.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: Daniel Schweiger , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" @@ -164,7 +164,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupează după" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/sk.po b/attachment_base_synchronize/i18n/sk.po index e97a2bddf12..423a147f4e2 100644 --- a/attachment_base_synchronize/i18n/sk.po +++ b/attachment_base_synchronize/i18n/sk.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Zoskupiť podľa" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/sr.po b/attachment_base_synchronize/i18n/sr.po index 7ffa5531947..d7a5f3b37b9 100644 --- a/attachment_base_synchronize/i18n/sr.po +++ b/attachment_base_synchronize/i18n/sr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupiši po" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/sr@latin.po b/attachment_base_synchronize/i18n/sr@latin.po index e75a9a664be..a920e43c1f3 100644 --- a/attachment_base_synchronize/i18n/sr@latin.po +++ b/attachment_base_synchronize/i18n/sr@latin.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupisano po" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/sv.po b/attachment_base_synchronize/i18n/sv.po index d7fde6ea3c5..1fe455e59c4 100644 --- a/attachment_base_synchronize/i18n/sv.po +++ b/attachment_base_synchronize/i18n/sv.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Gruppera efter" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/th.po b/attachment_base_synchronize/i18n/th.po index 354948f872d..c853507227a 100644 --- a/attachment_base_synchronize/i18n/th.po +++ b/attachment_base_synchronize/i18n/th.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "จัดกลุ่มโดย" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/tr_TR.po b/attachment_base_synchronize/i18n/tr_TR.po index 36ca6b6fb0f..b7fccfba300 100644 --- a/attachment_base_synchronize/i18n/tr_TR.po +++ b/attachment_base_synchronize/i18n/tr_TR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Grupla" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/uk.po b/attachment_base_synchronize/i18n/uk.po index 4657e0cfbe7..b491619e3be 100644 --- a/attachment_base_synchronize/i18n/uk.po +++ b/attachment_base_synchronize/i18n/uk.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Групувати за" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/vi.po b/attachment_base_synchronize/i18n/vi.po index 9d10dc4be2d..8f52565a09d 100644 --- a/attachment_base_synchronize/i18n/vi.po +++ b/attachment_base_synchronize/i18n/vi.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "Group By" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/zh_CN.po b/attachment_base_synchronize/i18n/zh_CN.po index f8aee8ad5af..e82088a7a8e 100644 --- a/attachment_base_synchronize/i18n/zh_CN.po +++ b/attachment_base_synchronize/i18n/zh_CN.po @@ -3,13 +3,14 @@ # * attachment_base_synchronize # # Translators: +# liAnGjiA , 2017 # OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -26,23 +27,23 @@ msgstr "附件" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" -msgstr "" +msgstr "附件名称" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url msgid "Attachment URL" -msgstr "" +msgstr "附件地址" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" -msgstr "" +msgstr "附件ID" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" -msgstr "" +msgstr "附件" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -83,7 +84,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" -msgstr "Description" +msgstr "说明" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name @@ -163,7 +164,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "分组" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id diff --git a/attachment_base_synchronize/i18n/zh_TW.po b/attachment_base_synchronize/i18n/zh_TW.po index bdc5504e4ac..b50ab7bf9d4 100644 --- a/attachment_base_synchronize/i18n/zh_TW.po +++ b/attachment_base_synchronize/i18n/zh_TW.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2017-12-01 02:09+0000\n" +"PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" -msgstr "" +msgstr "分組方式" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id From 19f916e736355e580cc0df6dcab469ea8b42049b Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 30 Dec 2017 12:35:55 +0100 Subject: [PATCH 13/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/nl_NL.po | 16 ++++++++-------- attachment_base_synchronize/i18n/ro.po | 9 +++++---- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/attachment_base_synchronize/i18n/nl_NL.po b/attachment_base_synchronize/i18n/nl_NL.po index 8dcb5c6d954..9bb76148468 100644 --- a/attachment_base_synchronize/i18n/nl_NL.po +++ b/attachment_base_synchronize/i18n/nl_NL.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-01 02:09+0000\n" -"PO-Revision-Date: 2017-12-01 02:09+0000\n" +"POT-Creation-Date: 2017-12-16 02:16+0000\n" +"PO-Revision-Date: 2017-12-16 02:16+0000\n" "Last-Translator: Peter Hageman , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -116,7 +116,7 @@ msgstr "Mislukt" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" -msgstr "" +msgstr "Bestandsinhoud" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname @@ -220,7 +220,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" -msgstr "" +msgstr "Mijn Document(en)" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -231,7 +231,7 @@ msgstr "Eigenaar" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Pending" -msgstr "" +msgstr "Wachtend" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field @@ -261,7 +261,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form msgid "Set to Done" -msgstr "" +msgstr "Gereed melden" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state @@ -277,7 +277,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" -msgstr "" +msgstr "Opgeslagen Bestandsnaam" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date @@ -327,4 +327,4 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata msgid "ir.attachment.metadata" -msgstr "" +msgstr "ir.attachment.metadata" diff --git a/attachment_base_synchronize/i18n/ro.po b/attachment_base_synchronize/i18n/ro.po index 79d994d454c..7e89245abdb 100644 --- a/attachment_base_synchronize/i18n/ro.po +++ b/attachment_base_synchronize/i18n/ro.po @@ -5,13 +5,14 @@ # Translators: # OCA Transbot , 2017 # Daniel Schweiger , 2017 +# Dorin Hongu , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-01 02:09+0000\n" -"PO-Revision-Date: 2017-12-01 02:09+0000\n" -"Last-Translator: Daniel Schweiger , 2017\n" +"POT-Creation-Date: 2017-12-16 02:16+0000\n" +"PO-Revision-Date: 2017-12-16 02:16+0000\n" +"Last-Translator: Dorin Hongu , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +60,7 @@ msgstr "" #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" -msgstr "" +msgstr "Companie" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid From 33fdfbc1df247a7ae92b3d7f50da09222440510d Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 16 Jan 2018 13:24:25 +0100 Subject: [PATCH 14/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/it.po | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/attachment_base_synchronize/i18n/it.po b/attachment_base_synchronize/i18n/it.po index 6ed92f65d26..29b2f364037 100644 --- a/attachment_base_synchronize/i18n/it.po +++ b/attachment_base_synchronize/i18n/it.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2017 +# Paolo Valier , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-01 02:09+0000\n" -"PO-Revision-Date: 2017-12-01 02:09+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-01-06 02:24+0000\n" +"PO-Revision-Date: 2018-01-06 02:24+0000\n" +"Last-Translator: Paolo Valier , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" -msgstr "" +msgstr "Allegato" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name @@ -42,7 +43,7 @@ msgstr "" #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" -msgstr "" +msgstr "Allegati" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -58,17 +59,17 @@ msgstr "" #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" -msgstr "" +msgstr "Azienda" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" -msgstr "Created by" +msgstr "Creato da" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" -msgstr "Created on" +msgstr "Creato il" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search From 3eb41d52e29088a2c2f5a3b407a46ad2309fe149 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 27 Jan 2018 12:51:33 +0100 Subject: [PATCH 15/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/pt.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/attachment_base_synchronize/i18n/pt.po b/attachment_base_synchronize/i18n/pt.po index 00b2ffb761a..ecbbe6be363 100644 --- a/attachment_base_synchronize/i18n/pt.po +++ b/attachment_base_synchronize/i18n/pt.po @@ -5,13 +5,14 @@ # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 +# Pedro Castro Silva , 2018 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-01 02:09+0000\n" -"PO-Revision-Date: 2017-12-01 02:09+0000\n" -"Last-Translator: Pedro Castro Silva , 2017\n" +"POT-Creation-Date: 2018-01-27 01:58+0000\n" +"PO-Revision-Date: 2018-01-27 01:58+0000\n" +"Last-Translator: Pedro Castro Silva , 2018\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -111,7 +112,7 @@ msgstr "" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Failed" -msgstr "" +msgstr "Falhou" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas From 204fed0a2b6aae915ae14d1fa3fe561f6d85bd5f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 3 Mar 2018 13:35:14 +0100 Subject: [PATCH 16/23] OCA Transbot updated translations from Transifex --- attachment_base_synchronize/i18n/es.po | 68 ++++++++++++++------------ attachment_base_synchronize/i18n/hr.po | 30 ++++++------ 2 files changed, 51 insertions(+), 47 deletions(-) diff --git a/attachment_base_synchronize/i18n/es.po b/attachment_base_synchronize/i18n/es.po index 1469d290a8b..de83e4a9bf2 100644 --- a/attachment_base_synchronize/i18n/es.po +++ b/attachment_base_synchronize/i18n/es.po @@ -3,14 +3,16 @@ # * attachment_base_synchronize # # Translators: +# Pedro M. Baeza , 2017 # OCA Transbot , 2017 +# enjolras , 2018 msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 02:43+0000\n" -"PO-Revision-Date: 2017-08-01 02:43+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-03-02 18:39+0000\n" +"PO-Revision-Date: 2018-03-02 18:39+0000\n" +"Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +23,38 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" -msgstr "" +msgstr "Adjunto" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" -msgstr "" +msgstr "Nombre del adjunto" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url msgid "Attachment URL" -msgstr "" +msgstr "URL del adjunto" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" -msgstr "" +msgstr "ID del adjunto" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" -msgstr "" +msgstr "Adjuntos" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" -msgstr "" +msgstr "Binario" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum msgid "Checksum/SHA1" -msgstr "" +msgstr "Checksum/SHA1" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id @@ -73,12 +75,12 @@ msgstr "Creado el" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" -msgstr "" +msgstr "Mes de creación" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" -msgstr "" +msgstr "Fecha de la base de datos" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description @@ -94,17 +96,17 @@ msgstr "Nombre a mostrar" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Done" -msgstr "" +msgstr "Hecho" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form msgid "Error" -msgstr "" +msgstr "Error" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" -msgstr "" +msgstr "Hash externo" #. module: attachment_base_synchronize #: selection:ir.attachment.metadata,state:0 @@ -115,17 +117,17 @@ msgstr "Fallido" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" -msgstr "" +msgstr "Contenido del archivo" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" -msgstr "" +msgstr "Nombre del archivo" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" -msgstr "" +msgstr "Tamaño del archivo" #. module: attachment_base_synchronize #: code:addons/attachment_base_synchronize/models/attachment.py:54 @@ -134,6 +136,8 @@ msgid "" "File corrupted: Something was wrong with the retrieved file, please relaunch" " the task." msgstr "" +"Archivo corrupto: ha ocurrido algún problema con el archivo, por favor " +"vuelva a ejecutar la tarea." #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash @@ -153,12 +157,12 @@ msgstr "" #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" -msgstr "" +msgstr "Tipo de archiv" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" -msgstr "" +msgstr "Filtrar en mis documentos" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -173,17 +177,17 @@ msgstr "ID" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content msgid "Indexed Content" -msgstr "" +msgstr "Contenido indexado" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" -msgstr "" +msgstr "Hash interno" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public msgid "Is public document" -msgstr "" +msgstr "Es un documento público" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update @@ -214,23 +218,23 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype msgid "Mime Type" -msgstr "" +msgstr "Tipo MIME" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" -msgstr "" +msgstr "Mis documentos" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" -msgstr "" +msgstr "Propietario" #. module: attachment_base_synchronize #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Pending" -msgstr "" +msgstr "Pendiente" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field @@ -255,7 +259,7 @@ msgstr "Nombre del recurso" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form msgid "Run" -msgstr "" +msgstr "Ejecutar" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form @@ -271,12 +275,12 @@ msgstr "Estado" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message msgid "State message" -msgstr "" +msgstr "Mensaje de estado" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" -msgstr "" +msgstr "Archivo guardado" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date @@ -314,7 +318,7 @@ msgstr "URL" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" -msgstr "" +msgstr "URL" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type @@ -326,4 +330,4 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata msgid "ir.attachment.metadata" -msgstr "" +msgstr "ir.attachment.metadata" diff --git a/attachment_base_synchronize/i18n/hr.po b/attachment_base_synchronize/i18n/hr.po index 670135d825b..f28afc64a79 100644 --- a/attachment_base_synchronize/i18n/hr.po +++ b/attachment_base_synchronize/i18n/hr.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-13 00:59+0000\n" -"PO-Revision-Date: 2017-07-13 00:59+0000\n" +"POT-Creation-Date: 2018-03-02 18:39+0000\n" +"PO-Revision-Date: 2018-03-02 18:39+0000\n" "Last-Translator: Bole , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Binarno" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum msgid "Checksum/SHA1" -msgstr "" +msgstr "Checksum/SHA1" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id @@ -105,7 +105,7 @@ msgstr "Greška" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" -msgstr "" +msgstr "Vanjski hash" #. module: attachment_base_synchronize #: selection:ir.attachment.metadata,state:0 @@ -154,7 +154,7 @@ msgstr "" #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" -msgstr "" +msgstr "Vrsta datoteke" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -174,17 +174,17 @@ msgstr "ID" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content msgid "Indexed Content" -msgstr "" +msgstr "Indeksirani sadržaj" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" -msgstr "" +msgstr "Interni hash" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public msgid "Is public document" -msgstr "" +msgstr "Je javni dokument" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update @@ -204,13 +204,13 @@ msgstr "Zadnje ažuriranje" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " -msgstr "" +msgstr "Poveznica na ir.attachment model" #. module: attachment_base_synchronize #: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment #: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" -msgstr "" +msgstr "Privitci meta podataka" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype @@ -220,7 +220,7 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" -msgstr "" +msgstr "Moj(i) Dokumnet(i)" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -231,7 +231,7 @@ msgstr "Vlasnik" #: selection:ir.attachment.metadata,state:0 #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Pending" -msgstr "" +msgstr "Na čekanju" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field @@ -256,12 +256,12 @@ msgstr "" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form msgid "Run" -msgstr "" +msgstr "Pokreni" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form msgid "Set to Done" -msgstr "" +msgstr "Postavi na završeno" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state @@ -272,7 +272,7 @@ msgstr "Status" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message msgid "State message" -msgstr "" +msgstr "Poruka statusa" #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname From 91d541e3173b57a9f53852e466fe8fc5e693d15f Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sun, 24 Jun 2018 08:19:49 +0000 Subject: [PATCH 17/23] [UPD] Update attachment_base_synchronize.pot --- attachment_base_synchronize/i18n/am.po | 11 +- attachment_base_synchronize/i18n/ar.po | 14 +- .../i18n/attachment_base_synchronize.pot | 316 ++++++++++++++++++ attachment_base_synchronize/i18n/bg.po | 11 +- attachment_base_synchronize/i18n/bs.po | 14 +- attachment_base_synchronize/i18n/ca.po | 11 +- attachment_base_synchronize/i18n/cs.po | 11 +- attachment_base_synchronize/i18n/da.po | 11 +- attachment_base_synchronize/i18n/de.po | 11 +- attachment_base_synchronize/i18n/el_GR.po | 14 +- attachment_base_synchronize/i18n/en.po | 314 +++++++++++------ attachment_base_synchronize/i18n/en_GB.po | 14 +- attachment_base_synchronize/i18n/es.po | 11 +- attachment_base_synchronize/i18n/es_AR.po | 14 +- attachment_base_synchronize/i18n/es_CL.po | 14 +- attachment_base_synchronize/i18n/es_CO.po | 14 +- attachment_base_synchronize/i18n/es_CR.po | 14 +- attachment_base_synchronize/i18n/es_DO.po | 14 +- attachment_base_synchronize/i18n/es_EC.po | 14 +- attachment_base_synchronize/i18n/es_ES.po | 14 +- attachment_base_synchronize/i18n/es_MX.po | 14 +- attachment_base_synchronize/i18n/es_PE.po | 14 +- attachment_base_synchronize/i18n/es_PY.po | 14 +- attachment_base_synchronize/i18n/es_VE.po | 14 +- attachment_base_synchronize/i18n/et.po | 11 +- attachment_base_synchronize/i18n/eu.po | 11 +- attachment_base_synchronize/i18n/fa.po | 11 +- attachment_base_synchronize/i18n/fi.po | 11 +- attachment_base_synchronize/i18n/fr.po | 14 +- attachment_base_synchronize/i18n/fr_CA.po | 14 +- attachment_base_synchronize/i18n/fr_CH.po | 14 +- attachment_base_synchronize/i18n/fr_FR.po | 14 +- attachment_base_synchronize/i18n/gl.po | 11 +- attachment_base_synchronize/i18n/gl_ES.po | 14 +- attachment_base_synchronize/i18n/he.po | 11 +- attachment_base_synchronize/i18n/hr.po | 14 +- attachment_base_synchronize/i18n/hr_HR.po | 17 +- attachment_base_synchronize/i18n/hu.po | 11 +- attachment_base_synchronize/i18n/id.po | 11 +- attachment_base_synchronize/i18n/it.po | 11 +- attachment_base_synchronize/i18n/ja.po | 11 +- attachment_base_synchronize/i18n/ko.po | 11 +- attachment_base_synchronize/i18n/lt.po | 14 +- attachment_base_synchronize/i18n/lt_LT.po | 17 +- attachment_base_synchronize/i18n/lv.po | 14 +- attachment_base_synchronize/i18n/mk.po | 11 +- attachment_base_synchronize/i18n/mn.po | 11 +- attachment_base_synchronize/i18n/nb.po | 14 +- attachment_base_synchronize/i18n/nb_NO.po | 14 +- attachment_base_synchronize/i18n/nl.po | 11 +- attachment_base_synchronize/i18n/nl_BE.po | 14 +- attachment_base_synchronize/i18n/nl_NL.po | 14 +- attachment_base_synchronize/i18n/pl.po | 15 +- attachment_base_synchronize/i18n/pt.po | 11 +- attachment_base_synchronize/i18n/pt_BR.po | 14 +- attachment_base_synchronize/i18n/pt_PT.po | 14 +- attachment_base_synchronize/i18n/ro.po | 14 +- attachment_base_synchronize/i18n/ru.po | 15 +- attachment_base_synchronize/i18n/sk.po | 11 +- attachment_base_synchronize/i18n/sl.po | 25 +- attachment_base_synchronize/i18n/sr.po | 14 +- attachment_base_synchronize/i18n/sr@latin.po | 17 +- attachment_base_synchronize/i18n/sv.po | 11 +- attachment_base_synchronize/i18n/th.po | 11 +- attachment_base_synchronize/i18n/tr.po | 11 +- attachment_base_synchronize/i18n/tr_TR.po | 14 +- attachment_base_synchronize/i18n/uk.po | 14 +- attachment_base_synchronize/i18n/vi.po | 11 +- attachment_base_synchronize/i18n/vi_VN.po | 14 +- attachment_base_synchronize/i18n/zh_CN.po | 14 +- attachment_base_synchronize/i18n/zh_TW.po | 14 +- 71 files changed, 1039 insertions(+), 498 deletions(-) create mode 100644 attachment_base_synchronize/i18n/attachment_base_synchronize.pot diff --git a/attachment_base_synchronize/i18n/am.po b/attachment_base_synchronize/i18n/am.po index a3f325e1e0a..4792f5b1f3a 100644 --- a/attachment_base_synchronize/i18n/am.po +++ b/attachment_base_synchronize/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/ar.po b/attachment_base_synchronize/i18n/ar.po index 1920e23a4a0..9b4219c3267 100644 --- a/attachment_base_synchronize/i18n/ar.po +++ b/attachment_base_synchronize/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/attachment_base_synchronize.pot b/attachment_base_synchronize/i18n/attachment_base_synchronize.pot new file mode 100644 index 00000000000..cb894eb2f73 --- /dev/null +++ b/attachment_base_synchronize/i18n/attachment_base_synchronize.pot @@ -0,0 +1,316 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * attachment_base_synchronize +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.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: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Attachment" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name +msgid "Attachment Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +msgid "Attachment URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Attachment id" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree +msgid "Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Binary" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Company" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid +msgid "Created by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date +msgid "Created on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Creation Month" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas +msgid "Database Data" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description +msgid "Description" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name +msgid "Display Name" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "External hash" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas +msgid "File Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname +msgid "File Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size +msgid "File Size" +msgstr "" + +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 +#, python-format +msgid "File corrupted: Something was wrong with the retrieved file, please relaunch the task." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash +msgid "File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the original file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "File hash computed with file data to be compared to external hash when provided." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "File type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Filter on my documents" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Group By" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id +msgid "ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +msgid "Indexed Content" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash +msgid "Internal hash" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update +msgid "Last Modified on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date +msgid "Last Updated on" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id +msgid "Link to ir.attachment model " +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment +msgid "Meta data Attachments" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +msgid "Mime Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "My Document(s)" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Owner" +msgstr "" + +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +msgid "Resource Field" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "Resource ID" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "Resource Model" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name +msgid "Resource Name" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname +msgid "Stored Filename" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +msgid "The database object this attachment will be attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +msgid "The file type determines an import method to be used to parse and transform data before their import in ERP or an export" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +msgid "The record id this is attached to." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Type" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "URL" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url +msgid "Url" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "You can either upload a file from your computer or copy/paste an internet link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +msgid "ir.attachment.metadata" +msgstr "" + diff --git a/attachment_base_synchronize/i18n/bg.po b/attachment_base_synchronize/i18n/bg.po index bd0fcf3f0d3..559da459998 100644 --- a/attachment_base_synchronize/i18n/bg.po +++ b/attachment_base_synchronize/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/bs.po b/attachment_base_synchronize/i18n/bs.po index 4248bb8161b..760e5d0b24b 100644 --- a/attachment_base_synchronize/i18n/bs.po +++ b/attachment_base_synchronize/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/ca.po b/attachment_base_synchronize/i18n/ca.po index 0c937b3fe12..424185e1b19 100644 --- a/attachment_base_synchronize/i18n/ca.po +++ b/attachment_base_synchronize/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/cs.po b/attachment_base_synchronize/i18n/cs.po index 36a167a238f..93939820796 100644 --- a/attachment_base_synchronize/i18n/cs.po +++ b/attachment_base_synchronize/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/da.po b/attachment_base_synchronize/i18n/da.po index f92d3f3ba89..07510f7b0b6 100644 --- a/attachment_base_synchronize/i18n/da.po +++ b/attachment_base_synchronize/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/de.po b/attachment_base_synchronize/i18n/de.po index 5b025052c28..15c603cf471 100644 --- a/attachment_base_synchronize/i18n/de.po +++ b/attachment_base_synchronize/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 # Niki Waibel , 2017 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: Rudolf Schnapka , 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" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -133,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/el_GR.po b/attachment_base_synchronize/i18n/el_GR.po index 5cc54dc608f..2c675ccb07d 100644 --- a/attachment_base_synchronize/i18n/el_GR.po +++ b/attachment_base_synchronize/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\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" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/en.po b/attachment_base_synchronize/i18n/en.po index fd7b04edfb5..f4f82b67123 100644 --- a/attachment_base_synchronize/i18n/en.po +++ b/attachment_base_synchronize/i18n/en.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_metadata -# +# # Translators: msgid "" msgstr "" @@ -10,233 +10,341 @@ msgstr "" "POT-Creation-Date: 2016-06-09 18:30+0000\n" "PO-Revision-Date: 2016-06-01 09:37+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en/)\n" +"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/" +"language/en/)\n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Attachment" msgstr "Attachment" -#. module: attachment_metadata -#: field:ir.attachment.metadata,name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_name msgid "Attachment Name" msgstr "Attachment Name" -#. module: attachment_metadata -#: field:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_local_url +#, fuzzy +msgid "Attachment URL" +msgstr "Attachment" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Attachment id" msgstr "Attachment id" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_tree +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_tree msgid "Attachments" msgstr "Attachments" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Binary" msgstr "Binary" -#. module: attachment_metadata -#: help:ir.attachment.metadata,type:0 -msgid "Binary File or URL" -msgstr "Binary File or URL" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_checksum +msgid "Checksum/SHA1" +msgstr "" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,company_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_company_id +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Company" msgstr "Company" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_uid msgid "Created by" msgstr "Created by" -#. module: attachment_metadata -#: field:ir.attachment.metadata,create_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_create_date msgid "Created on" msgstr "Created on" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Creation Month" msgstr "Creation Month" -#. module: attachment_metadata -#: field:ir.attachment.metadata,db_datas:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_db_datas msgid "Database Data" msgstr "Database Data" -#. module: attachment_metadata -#: field:ir.attachment.metadata,description:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_description msgid "Description" msgstr "Description" -#. module: attachment_metadata -#: field:ir.attachment.metadata,display_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_display_name msgid "Display Name" msgstr "Display Name" -#. module: attachment_metadata -#: field:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Error" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "External hash" msgstr "External hash" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Failed" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas msgid "File Content" msgstr "File Content" -#. module: attachment_metadata -#: field:ir.attachment.metadata,datas_fname:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_datas_fname msgid "File Name" msgstr "File Name" -#. module: attachment_metadata -#: field:ir.attachment.metadata,file_size:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_size msgid "File Size" msgstr "File Size" -#. module: attachment_metadata -#: code:addons/attachment_metadata/models/attachment.py:43 +#. module: attachment_base_synchronize +#: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." -msgstr "File corrupted: Something was wrong with the retrieved file, please relaunch the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." +msgstr "" +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." -#. module: attachment_metadata -#: help:ir.attachment.metadata,external_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." -msgstr "File hash comes from the external owner of the file.\nIf provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." +msgstr "" +"File hash comes from the external owner of the file.\n" +"If provided allow to check than downloaded file is the exact copy of the " +"original file." -#. module: attachment_metadata -#: help:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "" "File hash computed with file data to be compared to external hash when " "provided." -msgstr "File hash computed with file data to be compared to external hash when provided." +msgstr "" +"File hash computed with file data to be compared to external hash when " +"provided." -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "File type" msgstr "File type" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Filter on my documents" msgstr "Filter on my documents" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Group By" msgstr "Group By" -#. module: attachment_metadata -#: field:ir.attachment.metadata,id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_id msgid "ID" msgstr "ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,internal_hash:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_index_content +#, fuzzy +msgid "Indexed Content" +msgstr "File Content" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash msgid "Internal hash" msgstr "Internal hash" -#. module: attachment_metadata -#: field:ir.attachment.metadata,__last_update:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_public +msgid "Is public document" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata___last_update msgid "Last Modified on" msgstr "Last Modified on" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_uid:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_uid msgid "Last Updated by" msgstr "Last Updated by" -#. module: attachment_metadata -#: field:ir.attachment.metadata,write_date:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_write_date msgid "Last Updated on" msgstr "Last Updated on" -#. module: attachment_metadata -#: help:ir.attachment.metadata,attachment_id:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_attachment_id msgid "Link to ir.attachment model " msgstr "Link to ir.attachment model " -#. module: attachment_metadata -#: model:ir.actions.act_window,name:attachment_metadata.action_attachment -#: model:ir.ui.menu,name:attachment_metadata.menu_ir_attachment +#. module: attachment_base_synchronize +#: model:ir.actions.act_window,name:attachment_base_synchronize.action_attachment +#: model:ir.ui.menu,name:attachment_base_synchronize.menu_ir_attachment msgid "Meta data Attachments" msgstr "Meta data Attachments" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_mimetype +#, fuzzy +msgid "Mime Type" +msgstr "Type" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "My Document(s)" msgstr "My Document(s)" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Owner" msgstr "Owner" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_id:0 +#. module: attachment_base_synchronize +#: selection:ir.attachment.metadata,state:0 +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "Pending" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_field +#, fuzzy +msgid "Resource Field" +msgstr "Resource Model" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_id msgid "Resource ID" msgstr "Resource ID" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_model:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_model msgid "Resource Model" msgstr "Resource Model" -#. module: attachment_metadata -#: field:ir.attachment.metadata,res_name:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_res_name msgid "Resource Name" msgstr "Resource Name" -#. module: attachment_metadata -#: field:ir.attachment.metadata,store_fname:0 +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Run" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_attachment_improved_form +msgid "Set to Done" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search +msgid "State" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_state_message +msgid "State message" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_store_fname msgid "Stored Filename" msgstr "Stored Filename" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_model:0 -msgid "The database object this attachment will be attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_sync_date +msgid "Sync date" +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_model +#, fuzzy +msgid "The database object this attachment will be attached to." msgstr "The database object this attachment will be attached to" -#. module: attachment_metadata -#: help:ir.attachment.metadata,file_type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_file_type +#, fuzzy msgid "" "The file type determines an import method to be used to parse and transform " +"data before their import in ERP or an export" +msgstr "" +"The file type determines an import method to be used to parse and transform " "data before their import in ERP" -msgstr "The file type determines an import method to be used to parse and transform data before their import in ERP" -#. module: attachment_metadata -#: help:ir.attachment.metadata,res_id:0 -msgid "The record id this is attached to" +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_res_id +#, fuzzy +msgid "The record id this is attached to." msgstr "The record id this is attached to" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search -#: field:ir.attachment.metadata,type:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_type +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "Type" msgstr "Type" -#. module: attachment_metadata -#: view:ir.attachment.metadata:attachment_metadata.view_external_attachment_search +#. module: attachment_base_synchronize +#: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search msgid "URL" msgstr "URL" -#. module: attachment_metadata -#: field:ir.attachment.metadata,url:0 +#. module: attachment_base_synchronize +#: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_url msgid "Url" msgstr "Url" + +#. module: attachment_base_synchronize +#: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_type +msgid "" +"You can either upload a file from your computer or copy/paste an internet " +"link to your file." +msgstr "" + +#. module: attachment_base_synchronize +#: model:ir.model,name:attachment_base_synchronize.model_ir_attachment_metadata +#, fuzzy +msgid "ir.attachment.metadata" +msgstr "Link to ir.attachment model " + +#~ msgid "Binary File or URL" +#~ msgstr "Binary File or URL" diff --git a/attachment_base_synchronize/i18n/en_GB.po b/attachment_base_synchronize/i18n/en_GB.po index 7bae5b44850..6dcd2edb4b4 100644 --- a/attachment_base_synchronize/i18n/en_GB.po +++ b/attachment_base_synchronize/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\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" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es.po b/attachment_base_synchronize/i18n/es.po index de83e4a9bf2..0f1cb4009a4 100644 --- a/attachment_base_synchronize/i18n/es.po +++ b/attachment_base_synchronize/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # Pedro M. Baeza , 2017 # OCA Transbot , 2017 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2018-03-02 18:39+0000\n" "Last-Translator: enjolras , 2018\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" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -133,8 +133,8 @@ msgstr "Tamaño del archivo" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" "Archivo corrupto: ha ocurrido algún problema con el archivo, por favor " "vuelva a ejecutar la tarea." @@ -143,7 +143,8 @@ msgstr "" #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_AR.po b/attachment_base_synchronize/i18n/es_AR.po index c11252bff32..542f6317895 100644 --- a/attachment_base_synchronize/i18n/es_AR.po +++ b/attachment_base_synchronize/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\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" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_CL.po b/attachment_base_synchronize/i18n/es_CL.po index 3768a07ee65..daa0665137e 100644 --- a/attachment_base_synchronize/i18n/es_CL.po +++ b/attachment_base_synchronize/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\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" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_CO.po b/attachment_base_synchronize/i18n/es_CO.po index e1d732aaf96..1dddfe1ddde 100644 --- a/attachment_base_synchronize/i18n/es_CO.po +++ b/attachment_base_synchronize/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\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" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_CR.po b/attachment_base_synchronize/i18n/es_CR.po index 67d0ee78d66..0f6b65835e0 100644 --- a/attachment_base_synchronize/i18n/es_CR.po +++ b/attachment_base_synchronize/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\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" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_DO.po b/attachment_base_synchronize/i18n/es_DO.po index 6845f6e7182..186192eceb5 100644 --- a/attachment_base_synchronize/i18n/es_DO.po +++ b/attachment_base_synchronize/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\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" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_EC.po b/attachment_base_synchronize/i18n/es_EC.po index 7922322c6b5..b996f9734c2 100644 --- a/attachment_base_synchronize/i18n/es_EC.po +++ b/attachment_base_synchronize/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\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" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_ES.po b/attachment_base_synchronize/i18n/es_ES.po index 2a89d82a488..3c423f912ed 100644 --- a/attachment_base_synchronize/i18n/es_ES.po +++ b/attachment_base_synchronize/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\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" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_MX.po b/attachment_base_synchronize/i18n/es_MX.po index 5f424a7b7df..72810807add 100644 --- a/attachment_base_synchronize/i18n/es_MX.po +++ b/attachment_base_synchronize/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\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" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_PE.po b/attachment_base_synchronize/i18n/es_PE.po index 5b226d1ad05..83d9167facd 100644 --- a/attachment_base_synchronize/i18n/es_PE.po +++ b/attachment_base_synchronize/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\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" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_PY.po b/attachment_base_synchronize/i18n/es_PY.po index 108d03c3753..23c8e5d26be 100644 --- a/attachment_base_synchronize/i18n/es_PY.po +++ b/attachment_base_synchronize/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\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" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/es_VE.po b/attachment_base_synchronize/i18n/es_VE.po index 29b7eea8c84..9cc65f84afc 100644 --- a/attachment_base_synchronize/i18n/es_VE.po +++ b/attachment_base_synchronize/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\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" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/et.po b/attachment_base_synchronize/i18n/et.po index 87b80621a66..bd774df4877 100644 --- a/attachment_base_synchronize/i18n/et.po +++ b/attachment_base_synchronize/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/eu.po b/attachment_base_synchronize/i18n/eu.po index e0d6488f2e2..f548c587307 100644 --- a/attachment_base_synchronize/i18n/eu.po +++ b/attachment_base_synchronize/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/fa.po b/attachment_base_synchronize/i18n/fa.po index b908770c8c0..99eaaf7c6de 100644 --- a/attachment_base_synchronize/i18n/fa.po +++ b/attachment_base_synchronize/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/fi.po b/attachment_base_synchronize/i18n/fi.po index 9b0df28e6f1..6f5409edffb 100644 --- a/attachment_base_synchronize/i18n/fi.po +++ b/attachment_base_synchronize/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/fr.po b/attachment_base_synchronize/i18n/fr.po index f811d438642..8b3655de165 100644 --- a/attachment_base_synchronize/i18n/fr.po +++ b/attachment_base_synchronize/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 # Nicolas JEUDY , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: Nicolas JEUDY , 2017\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" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -132,8 +132,8 @@ msgstr "Taille du fichier" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" "Fichier corrompu: Quelque chose s'est mal passé pendant la récupération du " "fichier, relancez la tache.." @@ -142,10 +142,12 @@ msgstr "" #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash diff --git a/attachment_base_synchronize/i18n/fr_CA.po b/attachment_base_synchronize/i18n/fr_CA.po index f7d7178309a..a4b2494ba5a 100644 --- a/attachment_base_synchronize/i18n/fr_CA.po +++ b/attachment_base_synchronize/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\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" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/fr_CH.po b/attachment_base_synchronize/i18n/fr_CH.po index 568b7d8e898..d6abc911c1e 100644 --- a/attachment_base_synchronize/i18n/fr_CH.po +++ b/attachment_base_synchronize/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\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" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/fr_FR.po b/attachment_base_synchronize/i18n/fr_FR.po index 3e14ab738ce..90fc3a8cbb8 100644 --- a/attachment_base_synchronize/i18n/fr_FR.po +++ b/attachment_base_synchronize/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/gl.po b/attachment_base_synchronize/i18n/gl.po index ec0fd5cadb3..877624c0925 100644 --- a/attachment_base_synchronize/i18n/gl.po +++ b/attachment_base_synchronize/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/gl_ES.po b/attachment_base_synchronize/i18n/gl_ES.po index 816ab7f093c..bd6cc45878b 100644 --- a/attachment_base_synchronize/i18n/gl_ES.po +++ b/attachment_base_synchronize/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/he.po b/attachment_base_synchronize/i18n/he.po index 5a3712d592a..fd93488351e 100644 --- a/attachment_base_synchronize/i18n/he.po +++ b/attachment_base_synchronize/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/hr.po b/attachment_base_synchronize/i18n/hr.po index f28afc64a79..eba427f1307 100644 --- a/attachment_base_synchronize/i18n/hr.po +++ b/attachment_base_synchronize/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 # Bole , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2018-03-02 18:39+0000\n" "Last-Translator: Bole , 2017\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" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -132,15 +133,16 @@ msgstr "Veličina datoteke" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/hr_HR.po b/attachment_base_synchronize/i18n/hr_HR.po index 433e1754ad7..ebd17b73f04 100644 --- a/attachment_base_synchronize/i18n/hr_HR.po +++ b/attachment_base_synchronize/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\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" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/hu.po b/attachment_base_synchronize/i18n/hu.po index c4ee7d19834..93174841025 100644 --- a/attachment_base_synchronize/i18n/hu.po +++ b/attachment_base_synchronize/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/id.po b/attachment_base_synchronize/i18n/id.po index e2a4c6d8303..a37f27314b2 100644 --- a/attachment_base_synchronize/i18n/id.po +++ b/attachment_base_synchronize/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/it.po b/attachment_base_synchronize/i18n/it.po index 29b2f364037..21142abd5cc 100644 --- a/attachment_base_synchronize/i18n/it.po +++ b/attachment_base_synchronize/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-01-06 02:24+0000\n" "Last-Translator: Paolo Valier , 2017\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" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -132,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/ja.po b/attachment_base_synchronize/i18n/ja.po index b7493b6c4dc..e82f09e4dc6 100644 --- a/attachment_base_synchronize/i18n/ja.po +++ b/attachment_base_synchronize/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/ko.po b/attachment_base_synchronize/i18n/ko.po index f8801c79ebe..890e648ca7c 100644 --- a/attachment_base_synchronize/i18n/ko.po +++ b/attachment_base_synchronize/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/lt.po b/attachment_base_synchronize/i18n/lt.po index fa6c9981e7b..5347e6af835 100644 --- a/attachment_base_synchronize/i18n/lt.po +++ b/attachment_base_synchronize/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/lt_LT.po b/attachment_base_synchronize/i18n/lt_LT.po index 2f6c7de8c98..b1984cdb1b2 100644 --- a/attachment_base_synchronize/i18n/lt_LT.po +++ b/attachment_base_synchronize/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\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" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/lv.po b/attachment_base_synchronize/i18n/lv.po index 85703b13fab..958e731b1f2 100644 --- a/attachment_base_synchronize/i18n/lv.po +++ b/attachment_base_synchronize/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/mk.po b/attachment_base_synchronize/i18n/mk.po index 0fef1f75a42..2a90ec2bf45 100644 --- a/attachment_base_synchronize/i18n/mk.po +++ b/attachment_base_synchronize/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/mn.po b/attachment_base_synchronize/i18n/mn.po index 9600dc79bd8..08f630b876e 100644 --- a/attachment_base_synchronize/i18n/mn.po +++ b/attachment_base_synchronize/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/nb.po b/attachment_base_synchronize/i18n/nb.po index 5833c851ab6..5ebd7bd80ee 100644 --- a/attachment_base_synchronize/i18n/nb.po +++ b/attachment_base_synchronize/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\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" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/nb_NO.po b/attachment_base_synchronize/i18n/nb_NO.po index 417128012c6..a7cf24bb9ba 100644 --- a/attachment_base_synchronize/i18n/nb_NO.po +++ b/attachment_base_synchronize/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\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" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/nl.po b/attachment_base_synchronize/i18n/nl.po index c4dd4f18b63..3ee7f1517aa 100644 --- a/attachment_base_synchronize/i18n/nl.po +++ b/attachment_base_synchronize/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/nl_BE.po b/attachment_base_synchronize/i18n/nl_BE.po index b494740a236..958ba68322b 100644 --- a/attachment_base_synchronize/i18n/nl_BE.po +++ b/attachment_base_synchronize/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\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" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/nl_NL.po b/attachment_base_synchronize/i18n/nl_NL.po index 9bb76148468..ad5762be2cf 100644 --- a/attachment_base_synchronize/i18n/nl_NL.po +++ b/attachment_base_synchronize/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # Erwin van der Ploeg , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-12-16 02:16+0000\n" "PO-Revision-Date: 2017-12-16 02:16+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -132,15 +133,16 @@ msgstr "Bestandsgrootte" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/pl.po b/attachment_base_synchronize/i18n/pl.po index 7f283cc012e..9731635be15 100644 --- a/attachment_base_synchronize/i18n/pl.po +++ b/attachment_base_synchronize/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pl\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/pt.po b/attachment_base_synchronize/i18n/pt.po index ecbbe6be363..c33795a1ce3 100644 --- a/attachment_base_synchronize/i18n/pt.po +++ b/attachment_base_synchronize/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2018-01-27 01:58+0000\n" "Last-Translator: Pedro Castro Silva , 2018\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" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -133,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/pt_BR.po b/attachment_base_synchronize/i18n/pt_BR.po index 39c250d25a2..248d269cf0c 100644 --- a/attachment_base_synchronize/i18n/pt_BR.po +++ b/attachment_base_synchronize/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-08-01 02:43+0000\n" "PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\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" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/pt_PT.po b/attachment_base_synchronize/i18n/pt_PT.po index 6b4131ccb72..d2a065f0927 100644 --- a/attachment_base_synchronize/i18n/pt_PT.po +++ b/attachment_base_synchronize/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\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" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/ro.po b/attachment_base_synchronize/i18n/ro.po index 7e89245abdb..e61d4b19183 100644 --- a/attachment_base_synchronize/i18n/ro.po +++ b/attachment_base_synchronize/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 # Daniel Schweiger , 2017 @@ -14,11 +14,12 @@ msgstr "" "PO-Revision-Date: 2017-12-16 02:16+0000\n" "Last-Translator: Dorin Hongu , 2017\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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -133,15 +134,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/ru.po b/attachment_base_synchronize/i18n/ru.po index 49c084a49a8..e132961b018 100644 --- a/attachment_base_synchronize/i18n/ru.po +++ b/attachment_base_synchronize/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/sk.po b/attachment_base_synchronize/i18n/sk.po index 423a147f4e2..4e5b76ad6fd 100644 --- a/attachment_base_synchronize/i18n/sk.po +++ b/attachment_base_synchronize/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/sl.po b/attachment_base_synchronize/i18n/sl.po index e747a18b424..6a64d9c0bbf 100644 --- a/attachment_base_synchronize/i18n/sl.po +++ b/attachment_base_synchronize/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,20 +132,22 @@ msgstr "Velikost datoteke" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" -"Datoteka okvarjena: Nekaj je narobe s pridobljeno datoteko. Ponovno zaženite" -" opravilo, prosim." +"Datoteka okvarjena: Nekaj je narobe s pridobljeno datoteko. Ponovno zaženite " +"opravilo, prosim." #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" "Hash datoteke prihaja z zunanjim lastnikom datoteke.\n" -"Če je podano, omogoča preverjanje, če je prenesena datoteke natančna kopija originalne." +"Če je podano, omogoča preverjanje, če je prenesena datoteke natančna kopija " +"originalne." #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_internal_hash @@ -152,8 +155,8 @@ msgid "" "File hash computed with file data to be compared to external hash when " "provided." msgstr "" -"Hash datoteke obdelan s podatki o datoteki za primerjavo z zunanjim hash (če" -" je podan)." +"Hash datoteke obdelan s podatki o datoteki za primerjavo z zunanjim hash (če " +"je podan)." #. module: attachment_base_synchronize #: model:ir.model.fields,field_description:attachment_base_synchronize.field_ir_attachment_metadata_file_type diff --git a/attachment_base_synchronize/i18n/sr.po b/attachment_base_synchronize/i18n/sr.po index d7a5f3b37b9..33bd0e6ec93 100644 --- a/attachment_base_synchronize/i18n/sr.po +++ b/attachment_base_synchronize/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/sr@latin.po b/attachment_base_synchronize/i18n/sr@latin.po index a920e43c1f3..841038d8a45 100644 --- a/attachment_base_synchronize/i18n/sr@latin.po +++ b/attachment_base_synchronize/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/sv.po b/attachment_base_synchronize/i18n/sv.po index 1fe455e59c4..da1a2a89bc1 100644 --- a/attachment_base_synchronize/i18n/sv.po +++ b/attachment_base_synchronize/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/th.po b/attachment_base_synchronize/i18n/th.po index c853507227a..df80b092e5a 100644 --- a/attachment_base_synchronize/i18n/th.po +++ b/attachment_base_synchronize/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/tr.po b/attachment_base_synchronize/i18n/tr.po index 696a8f67e04..1ba088fba28 100644 --- a/attachment_base_synchronize/i18n/tr.po +++ b/attachment_base_synchronize/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-08-01 02:43+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/tr_TR.po b/attachment_base_synchronize/i18n/tr_TR.po index b7fccfba300..9269b63943c 100644 --- a/attachment_base_synchronize/i18n/tr_TR.po +++ b/attachment_base_synchronize/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\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" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/uk.po b/attachment_base_synchronize/i18n/uk.po index b491619e3be..f614cfde35e 100644 --- a/attachment_base_synchronize/i18n/uk.po +++ b/attachment_base_synchronize/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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: attachment_base_synchronize #: model:ir.ui.view,arch_db:attachment_base_synchronize.view_external_attachment_search @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/vi.po b/attachment_base_synchronize/i18n/vi.po index 8f52565a09d..934d37576b1 100644 --- a/attachment_base_synchronize/i18n/vi.po +++ b/attachment_base_synchronize/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +131,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/vi_VN.po b/attachment_base_synchronize/i18n/vi_VN.po index 32c50d7a7e7..79c82b13cf5 100644 --- a/attachment_base_synchronize/i18n/vi_VN.po +++ b/attachment_base_synchronize/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-13 00:59+0000\n" "PO-Revision-Date: 2017-07-13 00:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\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" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/zh_CN.po b/attachment_base_synchronize/i18n/zh_CN.po index e82088a7a8e..fbb9a7d65d8 100644 --- a/attachment_base_synchronize/i18n/zh_CN.po +++ b/attachment_base_synchronize/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # liAnGjiA , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\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" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -132,15 +133,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize diff --git a/attachment_base_synchronize/i18n/zh_TW.po b/attachment_base_synchronize/i18n/zh_TW.po index b50ab7bf9d4..d659682c913 100644 --- a/attachment_base_synchronize/i18n/zh_TW.po +++ b/attachment_base_synchronize/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * attachment_base_synchronize -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:09+0000\n" "PO-Revision-Date: 2017-12-01 02:09+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\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" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: attachment_base_synchronize @@ -131,15 +132,16 @@ msgstr "" #: code:addons/attachment_base_synchronize/models/attachment.py:54 #, python-format msgid "" -"File corrupted: Something was wrong with the retrieved file, please relaunch" -" the task." +"File corrupted: Something was wrong with the retrieved file, please relaunch " +"the task." msgstr "" #. module: attachment_base_synchronize #: model:ir.model.fields,help:attachment_base_synchronize.field_ir_attachment_metadata_external_hash msgid "" "File hash comes from the external owner of the file.\n" -"If provided allow to check than downloaded file is the exact copy of the original file." +"If provided allow to check than downloaded file is the exact copy of the " +"original file." msgstr "" #. module: attachment_base_synchronize From 8a678ed3a9e17183de449f28bb3ec02edf3275f7 Mon Sep 17 00:00:00 2001 From: kiplangatdan Date: Mon, 30 Jul 2018 08:45:37 +0300 Subject: [PATCH 18/23] [WIP][MIG]attachment_base_synchronize:Migration to 11.0 --- attachment_base_synchronize/__manifest__.py | 2 +- attachment_base_synchronize/data/cron.xml | 5 +++-- attachment_base_synchronize/models/attachment.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/attachment_base_synchronize/__manifest__.py b/attachment_base_synchronize/__manifest__.py index 6588796571a..991b9a84618 100644 --- a/attachment_base_synchronize/__manifest__.py +++ b/attachment_base_synchronize/__manifest__.py @@ -4,7 +4,7 @@ { 'name': 'Attachment Base Synchronize', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'author': 'Akretion,Odoo Community Association (OCA)', 'website': 'https://www.akretion.com', 'license': 'AGPL-3', diff --git a/attachment_base_synchronize/data/cron.xml b/attachment_base_synchronize/data/cron.xml index 47c82b1502f..b4eef49a818 100644 --- a/attachment_base_synchronize/data/cron.xml +++ b/attachment_base_synchronize/data/cron.xml @@ -8,8 +8,9 @@ -1 False - ir.attachment.metadata - run_attachment_metadata_scheduler + + code + model.run_attachment_metadata_scheduler() ([]) diff --git a/attachment_base_synchronize/models/attachment.py b/attachment_base_synchronize/models/attachment.py index 81d7d5b1340..690c2bd334d 100644 --- a/attachment_base_synchronize/models/attachment.py +++ b/attachment_base_synchronize/models/attachment.py @@ -76,7 +76,7 @@ def run(self): attach = attachment.with_env(new_env) try: attach._run() - except Exception, e: + except Exception as e: attach.env.cr.rollback() _logger.exception(e) attach.write( From 38218370e9dad7b407e2266a9c4fd45122ffcd68 Mon Sep 17 00:00:00 2001 From: kiplangatdan Date: Tue, 7 Aug 2018 15:51:44 +0300 Subject: [PATCH 19/23] Update README --- attachment_base_synchronize/README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/attachment_base_synchronize/README.rst b/attachment_base_synchronize/README.rst index a609c314a4d..ce2afc23d51 100644 --- a/attachment_base_synchronize/README.rst +++ b/attachment_base_synchronize/README.rst @@ -61,6 +61,7 @@ Contributors * Valentin CHEMIERE * Florian da Costa * Angel Moya +* Dan Kiplangat Maintainer ---------- From b294e1f060189672f428914f057ab98df68ff043 Mon Sep 17 00:00:00 2001 From: kiplangatdan Date: Fri, 2 Nov 2018 19:28:40 +0300 Subject: [PATCH 20/23] [ADD]batch_limit configuration --- attachment_base_synchronize/__manifest__.py | 1 + .../data/ir_config_parameter.xml | 10 ++++++++++ attachment_base_synchronize/models/attachment.py | 9 ++++++++- 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 attachment_base_synchronize/data/ir_config_parameter.xml diff --git a/attachment_base_synchronize/__manifest__.py b/attachment_base_synchronize/__manifest__.py index 991b9a84618..e76a9a822f2 100644 --- a/attachment_base_synchronize/__manifest__.py +++ b/attachment_base_synchronize/__manifest__.py @@ -17,6 +17,7 @@ 'views/attachment_view.xml', 'security/ir.model.access.csv', 'data/cron.xml', + 'data/ir_config_parameter.xml', ], 'demo': [ 'demo/attachment_metadata_demo.xml' diff --git a/attachment_base_synchronize/data/ir_config_parameter.xml b/attachment_base_synchronize/data/ir_config_parameter.xml new file mode 100644 index 00000000000..3066ee70e6b --- /dev/null +++ b/attachment_base_synchronize/data/ir_config_parameter.xml @@ -0,0 +1,10 @@ + + + + + + attachment_sync_cron_batch_limit + 200 + + + diff --git a/attachment_base_synchronize/models/attachment.py b/attachment_base_synchronize/models/attachment.py index 690c2bd334d..fb5fb1658d3 100644 --- a/attachment_base_synchronize/models/attachment.py +++ b/attachment_base_synchronize/models/attachment.py @@ -58,7 +58,14 @@ def _compute_hash(self): def run_attachment_metadata_scheduler(self, domain=None): if domain is None: domain = [('state', '=', 'pending')] - attachments = self.search(domain) + batch_limit = self.env.ref( + 'attachment_base_synchronize.attachment_sync_cron_batch_limit') \ + .value + if batch_limit and batch_limit.isdigit(): + limit = int(batch_limit) + else: + limit = 200 + attachments = self.search(domain, limit=limit) if attachments: return attachments.run() return True From 90d90a6698b61bd0c3eab792dbf1b78b4e8913da Mon Sep 17 00:00:00 2001 From: kiplangatdan Date: Wed, 14 Nov 2018 14:32:10 +0300 Subject: [PATCH 21/23] [IMP] Readme --- attachment_base_synchronize/README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/attachment_base_synchronize/README.rst b/attachment_base_synchronize/README.rst index ce2afc23d51..a25289ee1d1 100644 --- a/attachment_base_synchronize/README.rst +++ b/attachment_base_synchronize/README.rst @@ -25,6 +25,10 @@ Go the menu Settings > Technical > Database Structure > Meta Data Attachments You can create / see standard attachments with additional fields +Configure the batch limit for attachments that can be sync by the cron task at a go: + +Settings > Technical > System parameters > attachment_sync_cron_batch_limit + .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas From de55e19294b9014bbae9d05ff7456337fc9aa57c Mon Sep 17 00:00:00 2001 From: Tom Blauwendraat Date: Sun, 9 Dec 2018 17:28:04 +0100 Subject: [PATCH 22/23] fixup! [WIP][MIG]attachment_base_synchronize:Migration to 11.0 --- attachment_base_synchronize/README.rst | 8 +++--- attachment_base_synchronize/__manifest__.py | 5 ++-- attachment_base_synchronize/data/cron.xml | 24 ++++++++--------- .../data/ir_config_parameter.xml | 13 ++++------ .../models/attachment.py | 26 ++++++++----------- .../security/ir.model.access.csv | 2 +- attachment_base_synchronize/tests/__init__.py | 1 - .../tests/test_attachment_base_synchronize.py | 1 - .../views/attachment_view.xml | 4 +-- 9 files changed, 37 insertions(+), 47 deletions(-) diff --git a/attachment_base_synchronize/README.rst b/attachment_base_synchronize/README.rst index a25289ee1d1..87761b30ed8 100644 --- a/attachment_base_synchronize/README.rst +++ b/attachment_base_synchronize/README.rst @@ -6,16 +6,14 @@ Attachment Metadata ==================== -This module extend ir.attachment model with some new fields for a better control -for import and export of files. +This module extends ir.attachment model with some new fields for a better control for import and export of files. The main feature is an integrity file check with a hash. A file hash is short representation (signature) computed from file data. -Hashes computed before send file and after received file can be compared to be -sure of the content integrity. +Hashes computed before send file and after received file can be compared to be sure of the content integrity. -An example of the use of this module, can be found in the external_file_location. +An example of the use of this module, can be found in the module `external_file_location`. Usage diff --git a/attachment_base_synchronize/__manifest__.py b/attachment_base_synchronize/__manifest__.py index e76a9a822f2..58860305ddd 100644 --- a/attachment_base_synchronize/__manifest__.py +++ b/attachment_base_synchronize/__manifest__.py @@ -1,11 +1,12 @@ -# coding: utf-8 -# @ 2015 Florian DA COSTA @ Akretion +# Copyright 2015 Florian DA COSTA @ Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Attachment Base Synchronize', 'version': '11.0.1.0.0', 'author': 'Akretion,Odoo Community Association (OCA)', + 'summary': 'This module enhances ir.attachment for better ' + 'control of import and export of files', 'website': 'https://www.akretion.com', 'license': 'AGPL-3', 'category': 'Generic Modules', diff --git a/attachment_base_synchronize/data/cron.xml b/attachment_base_synchronize/data/cron.xml index b4eef49a818..38db608c68a 100644 --- a/attachment_base_synchronize/data/cron.xml +++ b/attachment_base_synchronize/data/cron.xml @@ -1,17 +1,17 @@ - - Run Attachments Metadata - 30 - minutes - -1 - False - - - code - model.run_attachment_metadata_scheduler() - ([]) - + + Run Attachments Metadata + 30 + minutes + -1 + False + + + code + model.run_attachment_metadata_scheduler() + ([]) + diff --git a/attachment_base_synchronize/data/ir_config_parameter.xml b/attachment_base_synchronize/data/ir_config_parameter.xml index 3066ee70e6b..fa726d03de7 100644 --- a/attachment_base_synchronize/data/ir_config_parameter.xml +++ b/attachment_base_synchronize/data/ir_config_parameter.xml @@ -1,10 +1,7 @@ - - - - - attachment_sync_cron_batch_limit - 200 - - + + + attachment_sync_cron_batch_limit + 200 + diff --git a/attachment_base_synchronize/models/attachment.py b/attachment_base_synchronize/models/attachment.py index fb5fb1658d3..bafb891a98b 100644 --- a/attachment_base_synchronize/models/attachment.py +++ b/attachment_base_synchronize/models/attachment.py @@ -1,13 +1,10 @@ -# coding: utf-8 -# @ 2015 Florian DA COSTA @ Akretion +# Copyright 2015 Florian DA COSTA @ Akretion # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from base64 import b64decode import hashlib import logging -import odoo -from odoo import _, api, fields, models -from odoo.exceptions import UserError +from odoo import _, api, exceptions, fields, models, registry _logger = logging.getLogger(__name__) @@ -31,7 +28,6 @@ class IrAttachmentMetadata(models.Model): help="Link to ir.attachment model ") file_type = fields.Selection( selection=[], - string="File type", help="The file type determines an import method to be used " "to parse and transform data before their import in ERP or an export") sync_date = fields.Datetime() @@ -50,7 +46,7 @@ def _compute_hash(self): b64decode(attachment.datas)).hexdigest() if attachment.external_hash and\ attachment.internal_hash != attachment.external_hash: - raise UserError( + raise exceptions.UserError( _("File corrupted: Something was wrong with " "the retrieved file, please relaunch the task.")) @@ -77,20 +73,20 @@ def run(self): """ for attachment in self: with api.Environment.manage(): - with odoo.registry(self.env.cr.dbname).cursor() as new_cr: + with registry(self.env.cr.dbname).cursor() as new_cr: new_env = api.Environment( new_cr, self.env.uid, self.env.context) attach = attachment.with_env(new_env) try: attach._run() + # pylint: disable=broad-except except Exception as e: attach.env.cr.rollback() - _logger.exception(e) - attach.write( - { - 'state': 'failed', - 'state_message': e, - }) + _logger.exception(str(e)) + attach.write({ + 'state': 'failed', + 'state_message': str(e), + }) attach.env.cr.commit() else: vals = { @@ -104,7 +100,7 @@ def run(self): @api.multi def _run(self): self.ensure_one() - _logger.info('Start to process attachment metadata id %s' % self.id) + _logger.info('Start to process attachment metadata id %d', self.id) @api.multi def set_done(self): diff --git a/attachment_base_synchronize/security/ir.model.access.csv b/attachment_base_synchronize/security/ir.model.access.csv index a3628dbba29..a886558da4a 100644 --- a/attachment_base_synchronize/security/ir.model.access.csv +++ b/attachment_base_synchronize/security/ir.model.access.csv @@ -1,3 +1,3 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_attachment_metadata_user,ir.attachment.metadata.user,model_ir_attachment_metadata,,1,0,0,0 -access_attachment_metadata_user,ir.attachment.metadata.user,model_ir_attachment_metadata,base.group_no_one,1,1,1,1 +access_attachment_metadata_manager,ir.attachment.metadata.manager,model_ir_attachment_metadata,base.group_no_one,1,1,1,1 diff --git a/attachment_base_synchronize/tests/__init__.py b/attachment_base_synchronize/tests/__init__.py index ef5480f44cd..dc9b248dd45 100644 --- a/attachment_base_synchronize/tests/__init__.py +++ b/attachment_base_synchronize/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Angel Moya (http://angelmoya.es) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py index a4f90abdfaf..724d244df3c 100644 --- a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py +++ b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Angel Moya (http://angelmoya.es) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/attachment_base_synchronize/views/attachment_view.xml b/attachment_base_synchronize/views/attachment_view.xml index 28dfaf702a9..6da7b42a082 100644 --- a/attachment_base_synchronize/views/attachment_view.xml +++ b/attachment_base_synchronize/views/attachment_view.xml @@ -28,10 +28,10 @@ - + ir.attachment.metadata - + From 51d39f298d672116eea1460d31ba08a0542a23f3 Mon Sep 17 00:00:00 2001 From: Tom Blauwendraat Date: Mon, 10 Dec 2018 10:25:36 +0100 Subject: [PATCH 23/23] fixup! [WIP][MIG]attachment_base_synchronize:Migration to 11.0 --- .../tests/test_attachment_base_synchronize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py index 724d244df3c..b7cd511f902 100644 --- a/attachment_base_synchronize/tests/test_attachment_base_synchronize.py +++ b/attachment_base_synchronize/tests/test_attachment_base_synchronize.py @@ -29,7 +29,7 @@ def test_attachment_metadata(self): 'pending' ) self.ir_attachment_metadata.run_attachment_metadata_scheduler() - self.env.invalidate_all() + self.env.cache.invalidate() with odoo.registry(self.env.cr.dbname).cursor() as new_cr: new_env = api.Environment( new_cr, self.env.uid, self.env.context)