Browse Source
Port external_file_location to v9
Port external_file_location to v9
Add company_id on external location and external task12.0-mig-module_prototyper_last
Florian da Costa
8 years ago
committed by
David Beal
93 changed files with 20945 additions and 748 deletions
-
47external_file_location/README.rst
-
14external_file_location/__openerp__.py
-
4external_file_location/data/cron.xml
-
99external_file_location/demo/task_demo.xml
-
288external_file_location/i18n/am.po
-
289external_file_location/i18n/ar.po
-
289external_file_location/i18n/bg.po
-
288external_file_location/i18n/bs.po
-
297external_file_location/i18n/ca.po
-
288external_file_location/i18n/ca_ES.po
-
289external_file_location/i18n/cs.po
-
288external_file_location/i18n/da.po
-
292external_file_location/i18n/de.po
-
289external_file_location/i18n/el_GR.po
-
288external_file_location/i18n/en_GB.po
-
289external_file_location/i18n/es.po
-
288external_file_location/i18n/es_AR.po
-
288external_file_location/i18n/es_CL.po
-
288external_file_location/i18n/es_CO.po
-
288external_file_location/i18n/es_CR.po
-
288external_file_location/i18n/es_DO.po
-
288external_file_location/i18n/es_EC.po
-
289external_file_location/i18n/es_ES.po
-
288external_file_location/i18n/es_MX.po
-
288external_file_location/i18n/es_PE.po
-
288external_file_location/i18n/es_PY.po
-
288external_file_location/i18n/es_VE.po
-
288external_file_location/i18n/et.po
-
289external_file_location/i18n/eu.po
-
347external_file_location/i18n/external_file_location.pot
-
288external_file_location/i18n/fa.po
-
289external_file_location/i18n/fi.po
-
296external_file_location/i18n/fr.po
-
288external_file_location/i18n/fr_CA.po
-
288external_file_location/i18n/fr_CH.po
-
290external_file_location/i18n/gl.po
-
288external_file_location/i18n/gl_ES.po
-
288external_file_location/i18n/he.po
-
290external_file_location/i18n/hr.po
-
289external_file_location/i18n/hr_HR.po
-
288external_file_location/i18n/hu.po
-
288external_file_location/i18n/id.po
-
289external_file_location/i18n/it.po
-
288external_file_location/i18n/ja.po
-
288external_file_location/i18n/ko.po
-
288external_file_location/i18n/lt.po
-
289external_file_location/i18n/lt_LT.po
-
288external_file_location/i18n/lv.po
-
288external_file_location/i18n/mk.po
-
288external_file_location/i18n/mn.po
-
288external_file_location/i18n/nb.po
-
289external_file_location/i18n/nb_NO.po
-
289external_file_location/i18n/nl.po
-
288external_file_location/i18n/nl_BE.po
-
288external_file_location/i18n/nl_NL.po
-
288external_file_location/i18n/pl.po
-
290external_file_location/i18n/pt.po
-
289external_file_location/i18n/pt_BR.po
-
290external_file_location/i18n/pt_PT.po
-
288external_file_location/i18n/ro.po
-
288external_file_location/i18n/ru.po
-
290external_file_location/i18n/sk.po
-
292external_file_location/i18n/sl.po
-
288external_file_location/i18n/sr.po
-
288external_file_location/i18n/sr@latin.po
-
288external_file_location/i18n/sv.po
-
288external_file_location/i18n/th.po
-
291external_file_location/i18n/tr.po
-
289external_file_location/i18n/tr_TR.po
-
289external_file_location/i18n/uk.po
-
288external_file_location/i18n/vi.po
-
288external_file_location/i18n/vi_VN.po
-
290external_file_location/i18n/zh_CN.po
-
288external_file_location/i18n/zh_TW.po
-
30external_file_location/models/attachment.py
-
84external_file_location/models/helper.py
-
71external_file_location/models/location.py
-
235external_file_location/models/task.py
-
1external_file_location/tasks/__init__.py
-
196external_file_location/tasks/abstract_fs.py
-
28external_file_location/tasks/abstract_task.py
-
50external_file_location/tasks/filestore.py
-
55external_file_location/tasks/ftp.py
-
55external_file_location/tasks/sftp.py
-
2external_file_location/tests/__init__.py
-
32external_file_location/tests/common.py
-
19external_file_location/tests/mock_server.py
-
50external_file_location/tests/test_filestore.py
-
86external_file_location/tests/test_ftp.py
-
213external_file_location/tests/test_sftp.py
-
28external_file_location/views/attachment_view.xml
-
7external_file_location/views/location_view.xml
-
12external_file_location/views/task_view.xml
@ -0,0 +1,99 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
<record id="location_ftp" model="external.file.location"> |
|||
<field name="name">TEST FTP</field> |
|||
<field name="protocol">ftp</field> |
|||
<field name="address">my-ftp-address</field> |
|||
<field name="login">my-ftp-user</field> |
|||
<field name="password">my-ftp-password</field> |
|||
<field name="port">21</field> |
|||
</record> |
|||
<record id="location_sftp" model="external.file.location"> |
|||
<field name="name">TEST SFTP</field> |
|||
<field name="protocol">sftp</field> |
|||
<field name="address">my-sftp-address</field> |
|||
<field name="login">my-sftp-user</field> |
|||
<field name="password">my-sftp-password</field> |
|||
<field name="port">22</field> |
|||
</record> |
|||
<record id="location_filestore" model="external.file.location"> |
|||
<field name="name">TEST File Store</field> |
|||
<field name="protocol">file_store</field> |
|||
<field name="filestore_rootpath">/</field> |
|||
</record> |
|||
|
|||
<record id="ftp_import_task" model="external.file.task"> |
|||
<field name="method_type">import</field> |
|||
<field name="location_id" eval="ref('external_file_location.location_ftp')"/> |
|||
<field name="filename">test-import-ftp.txt</field> |
|||
<field name="filepath">/home/user/test</field> |
|||
<field name="name">Import FTP Task</field> |
|||
</record> |
|||
|
|||
<record id="ftp_export_task" model="external.file.task"> |
|||
<field name="method_type">export</field> |
|||
<field name="location_id" eval="ref('external_file_location.location_ftp')"/> |
|||
<field name="filepath">/home/user/test</field> |
|||
<field name="name">Export FTP Task</field> |
|||
</record> |
|||
|
|||
<record id="sftp_import_task" model="external.file.task"> |
|||
<field name="method_type">import</field> |
|||
<field name="location_id" eval="ref('external_file_location.location_sftp')"/> |
|||
<field name="filename">test-import-sftp.txt</field> |
|||
<field name="filepath">/home/user/test</field> |
|||
<field name="name">Import SFTP Task</field> |
|||
</record> |
|||
|
|||
<record id="sftp_export_task" model="external.file.task"> |
|||
<field name="method_type">export</field> |
|||
<field name="location_id" eval="ref('external_file_location.location_sftp')"/> |
|||
<field name="filepath">/home/user/test</field> |
|||
<field name="name">Export SFTP Task</field> |
|||
</record> |
|||
|
|||
<record id="filestore_import_task" model="external.file.task"> |
|||
<field name="method_type">import</field> |
|||
<field name="location_id" eval="ref('external_file_location.location_filestore')"/> |
|||
<field name="filename">test-import-filestore.txt</field> |
|||
<field name="filepath">/home/user/test</field> |
|||
<field name="name">Import filestore Task</field> |
|||
</record> |
|||
|
|||
<record id="filestore_export_task" model="external.file.task"> |
|||
<field name="method_type">export</field> |
|||
<field name="location_id" eval="ref('external_file_location.location_filestore')"/> |
|||
<field name="filepath">/home/user/test</field> |
|||
<field name="name">Export filestore Task</field> |
|||
</record> |
|||
|
|||
<record id="ir_attachment_export_file_sftp" model="ir.attachment.metadata"> |
|||
<field name="name">Sftp text export file</field> |
|||
<field name="datas">dGVzdCBzZnRwIGZpbGUgZXhwb3J0</field> |
|||
<field name="datas_fname">sftp_test_export.txt</field> |
|||
<field name="task_id" eval="ref('external_file_location.sftp_export_task')"/> |
|||
<field name="file_type">export_external_location</field> |
|||
</record> |
|||
|
|||
<record id="ir_attachment_export_file_ftp" model="ir.attachment.metadata"> |
|||
<field name="name">ftp text export file</field> |
|||
<field name="datas">dGVzdCBmdHAgZmlsZSBleHBvcnQ=</field> |
|||
<field name="datas_fname">ftp_test_export.txt</field> |
|||
<field name="task_id" eval="ref('external_file_location.ftp_export_task')"/> |
|||
<field name="file_type">export_external_location</field> |
|||
</record> |
|||
|
|||
<record id="ir_attachment_export_file_filestore" model="ir.attachment.metadata"> |
|||
<field name="name">filestore text export file</field> |
|||
<field name="datas">dGVzdCBmaWxlc3RvcmUgZmlsZSBleHBvcnQ=</field> |
|||
<field name="datas_fname">filestore_test_export.txt</field> |
|||
<field name="task_id" eval="ref('external_file_location.filestore_export_task')"/> |
|||
<field name="file_type">export_external_location</field> |
|||
</record> |
|||
|
|||
|
|||
|
|||
</data> |
|||
</openerp> |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# SaFi J. <safi2266@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: SaFi J. <safi2266@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "نشِط" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "الشركة" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "أنشئ بواسطة" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "أنشئ في" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "اسم العرض" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "تصدير" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "المعرف" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "إستيراد" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "آخر تعديل في" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "آخر تحديث بواسطة" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "آخر تحديث في" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "الاسم" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "مهمة" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Kaloyan Naumov <kaloyan@lumnus.net>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Kaloyan Naumov <kaloyan@lumnus.net>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Активен" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Фирма" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Създадено от" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Създадено на" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Име за Показване" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Последно обновено на" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Последно обновено от" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Последно обновено на" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Име" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "Порт" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktivno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Kompanija" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Kreirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Kreirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Prikaži naziv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Zadnje mijenjano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Zadnji ažurirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Zadnje ažurirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Ime" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,297 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2017 |
|||
# Carles Antoli <carlesantoli@hotmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Carles Antoli <carlesantoli@hotmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "Acció després d'importar un fitxer " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Actiu" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Adreça" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "Després d'importar " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Adjunt " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Companyia" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "Control d'integritat de fitxer després d'importar un fitxer md5 " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creat per" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creat el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "Configuració de la importació de dades" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Mostrar el nom" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Tema del Correu electrònic " |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Exportar " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "Tasques de fitxer extern " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "Ubicació del Fitxer " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "Ubicacions del Fitxer " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "Tipus de Fitxer " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "Intercanvi de fitxer " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
"Nom de l'arxiu a importar. Podeu utilitzar patrons tipus *.txt per importar " |
|||
"tots els fitxers txt " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "Ruta arrel d'emmagatzematge del fitxer" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Nom d'arxiu " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "Ruta de l'arxiu " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "Amagar inici de sessió " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "Amagar contrasenya" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "Amagar port " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "El fitxer importat serà traslladat a aquesta ruta " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
"El fitxer importat serà re-nombrat cap aquest nom. El nom pot utilitzar una " |
|||
"plantilla mako on obj és un ir_attachement. template exemple: " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Darrera modificació el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Darrera Actualització per" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Darrera Actualització el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Ubicació " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "Entrada " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "Comprovació md5 " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "Tipus de mètode " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "Moure ruta " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nom" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "Nom nou " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Contrasenya " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "Ruta per a importar/exportar fitxer " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "Port" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "Protocol" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Executar " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "Direcció arrel del servidor " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tasca" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "ID de tasca " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "Tasques " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
|||
"El tipus de fitxer determina un mètode d'importació per ser utilitzat per " |
|||
"analitzar i transformar les dades abans des ser importades al ERP " |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: ca_ES\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Companyia" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Jaroslav Helemik Nemec <nemec@helemik.cz>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Jaroslav Helemik Nemec <nemec@helemik.cz>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktivní" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Společnost" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Vytvořil(a)" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Vytvořeno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Zobrazovaný název" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Naposled upraveno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Naposled upraveno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Naposled upraveno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Název" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Virksomhed" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Oprettet af" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Oprettet den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Vist navn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Id" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Sidst ændret den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Sidst opdateret af" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Sidst opdateret den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Postnr/by " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Navn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,292 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Rudolf Schnapka <rs@techno-flex.de>, 2017 |
|||
# Ermin Trevisan <trevi@twanda.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Ermin Trevisan <trevi@twanda.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Anschrift" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Anhang" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Unternehmen" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Angelegt durch" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Angelegt am" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Anzeigename" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Email-Thread" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Export" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "Dateiart" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Dateiname" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Import" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Zuletzt geändert am" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Zuletzt akualisiert durch" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Zuletzt akualisiert am" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Standort" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Bezeichnung" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Passwort" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Ausführen" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Aufgabe" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "Aufgaben" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
|||
"Der Dateityp legt die Methode fest, die beim Parsen und Umwandeln vor dem " |
|||
"Import ins ERP eingesetzt wird." |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Kostas Goutoudis <goutoudis@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Εταιρεία" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Δημιουργήθηκε από " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Δημιουργήθηκε στις" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Κωδικός" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Τελευταία ενημέρωση από" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Τελευταία ενημέρωση στις" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Ονομασία" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Active" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Company" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Created by" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Created on" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Display Name" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Last Modified on" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Last Updated by" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Last Updated on" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Name" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Pedro M. Baeza <pedro.baeza@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Dirección" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Adjunto" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Compañía" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre mostrado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Hilo correo electrónico" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Exportar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Nombre de archivo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Identificador" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Localización" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Contraseña" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "Puerto" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Ejecutar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarea" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "Tareas" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Mostrar Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización realizada por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre mostrado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID (identificación)" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización de" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre Público" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última Modificación el" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Actualizado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Actualizado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Compañía" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Ultima actualización por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultima actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarea" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre mostrado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización de" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Compañia" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre mostrado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID (identificación)" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización de" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Javier García-Panach <panaka7@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Javier García-Panach <panaka7@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Compañía" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre para mostrar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Ubicación" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Compañía" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre desplegado" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Ultima modificacion realizada" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Ultima actualizacion por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultima actualización realizada" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarea" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre a Mostrar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Ultima Modificación en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Actualizado última vez por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultima Actualización" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Ultima actualización por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultima actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Mostrar nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Modificada por última vez" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización realizada por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultima actualizacion en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarea" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiivne" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Ettevõte" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Loonud" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Loodud" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Näidatav nimi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Viimati muudetud" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Viimati uuendatud" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Viimati uuendatud" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nimi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Esther Martín Menéndez <esthermartin001@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Esther Martín Menéndez <esthermartin001@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Helbidea" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Enpresa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Nork sortua" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Created on" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Izena erakutsi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Inportatu" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Last Updated by" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Last Updated on" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Izena" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,347 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-08-10 16:51+0000\n" |
|||
"PO-Revision-Date: 2016-08-10 16:51+0000\n" |
|||
"Last-Translator: <>\n" |
|||
"Language-Team: \n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: \n" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_needaction |
|||
msgid "Action Needed" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_ir_attachment_metadata_message_last_post |
|||
msgid "Date of the last message posted on the record." |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
msgid "Description" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "File name which is imported.You can use file pattern like *.txtto import all txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_follower_ids |
|||
msgid "Followers" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_channel_ids |
|||
msgid "Followers (Channels)" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_partner_ids |
|||
msgid "Followers (Partners)" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_ir_attachment_metadata_message_unread |
|||
msgid "If checked new messages require your attention." |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_ir_attachment_metadata_message_needaction |
|||
msgid "If checked, new messages require your attention." |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "Imported File will be renamed to this nameName can use mako template where obj is an ir_attachement. template exemple : ${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_is_follower |
|||
msgid "Is Follower" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_last_post |
|||
msgid "Last Message Date" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_ids |
|||
msgid "Messages" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_needaction_counter |
|||
msgid "Number of Actions" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_ir_attachment_metadata_message_needaction_counter |
|||
msgid "Number of messages which requires an action" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_ir_attachment_metadata_message_unread_counter |
|||
msgid "Number of unread messages" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "The file type determines an import method to be used to parse and transform data before their import in ERP" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_unread |
|||
msgid "Unread Messages" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_message_unread_counter |
|||
msgid "Unread Messages Counter" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "ir.attachment.metadata" |
|||
msgstr "" |
|||
|
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "ایجاد شده توسط" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "ایجاد شده در" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "نام نمایشی" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "شناسه" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "تاریخ آخرین بهروزرسانی" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "آخرین به روز رسانی توسط" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "آخرین به روز رسانی در" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "نام" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiivinen" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Osoite" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Yritys" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Luonut" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Luotu" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nimi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Vie" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Tuo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Viimeksi muokattu" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Viimeksi päivittänyt" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Viimeksi päivitetty" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Sijainti" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nimi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tehtävä" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,296 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Zwygart <zwygart@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Zwygart <zwygart@gmail.com>, 2017\n" |
|||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: fr\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "Action après l'import du fichier" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Active" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Addresse" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "Après import" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Pièce jointe" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Société" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "Contrôle l'intégrité du fichier après l'import avec un fichier md5" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Créé par" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Créé le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "Data importation setting" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Afficher le nom" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Discussion de courriel" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Export" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "Tache" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "Emplacement fichier" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "Emplacements fichiers" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "Echange de fichier" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
"Nom du fichier importé. Vous pouvez utiliser une expression comme *.txt pour" |
|||
" importer tous les fichiers txt" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "Emplacement racine" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Nom du fichier" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "Chemin" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "Cacher le login" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "Cacher le mot de passe" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "Cacher le port" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Identifiant" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Import" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "Le fichier importé sera déplacé dans cet emplacement" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Dernière modification le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Dernière mise à jour par" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Dernière mise à jour le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Emplacement" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "Identifiant" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "Md5 check" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "Type de méthode" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nom" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Mot de passe" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "Path to imported/exported file" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "Port" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "Protocole" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Run" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "Chemin racine du serveur" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tache" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "Task ids" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "Taches" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
|||
"Le type de fichier détermine la méthode d'import utilisée pour parser le " |
|||
"fichier et transformer les données avant l'import dans l'ERP" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Créé par" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Créé le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Afficher le nom" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Identifiant" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Dernière mise à jour par" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Dernière mise à jour le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nom" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Actif" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Créé par" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Créé le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nom affiché" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Nom de fichier" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Dernière modification le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Modifié par" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Modifié le" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,290 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# César Castro Cruz <ulmroan@gmail.com>, 2017 |
|||
# Alejandro Santana <alejandrosantana@anubia.es>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Enderezo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Compañía" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Exportar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "ültima actualización por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización en" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Localidade" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarefa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "נוצר על ידי" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "נוצר ב-" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "השם המוצג" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "מזהה" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "תאריך שינוי אחרון" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "עודכן לאחרונה על ידי" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "עודכן לאחרונה על" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "שם" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,290 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Bole <bole@dajmi5.com>, 2017 |
|||
# Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Ana-Maria Olujić <ana-maria.olujic@slobodni-programi.hr>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktivno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Adresa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Privitak" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Poduzeće" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Kreirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Kreirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Naziv " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Izvoz" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "naziv datoteke" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Uvoz" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Zadnje modificirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Zadnji ažurirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Zadnje ažuriranje" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Lokacija" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Naziv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Zadatak" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Bole <bole@dajmi5.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Bole <bole@dajmi5.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktivan" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Adresa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Poduzeće" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Kreirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Kreirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Naziv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Uvezi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Zadnje modificirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Zadnji ažurirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Zadnje ažurirano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Lokacija" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Naziv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Zadatak" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktív" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Vállalat" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Készítette" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Létrehozás dátuma" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Név megjelenítése" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Utolsó frissítés dátuma" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Utoljára frissítve, által" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Utoljára frissítve " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Név" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Feladat" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktif" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Perusahaan" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Dibuat oleh" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Dibuat pada" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nama Tampilan" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Terakhir Dimodifikasi pada" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Diperbaharui oleh" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Diperbaharui pada" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nama" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Paolo Valier <paolo.valier@hotmail.it>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Attivo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Indirizzo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Allegato" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Azienda" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creato da" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creato il" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nome da visualizzare" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Discussione Email" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Esporta" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Nome del file" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Ultima modifica il" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Ultimo aggiornamento di" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultimo aggiornamento il" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Posizione" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Password" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Esegui" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Attività" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "有効" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "会社" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "作成者" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "作成日" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "表示名" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "最終更新日" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "最終更新者" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "最終更新日" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "名称" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "タスク" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "작성자" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "작성일" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "표시 이름" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "최근 수정" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "최근 갱신한 사람" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "최근 갱신 날짜" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "이름" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktyvus" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Įmonė" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Sukūrė" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Sukurta" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Vaizduojamas pavadinimas" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Paskutinį kartą keista" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Paskutinį kartą atnaujino" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Paskutinį kartą atnaujinta" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Pavadinimas" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Užduotis" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Arminas Grigonis <arminas@versada.lt>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Arminas Grigonis <arminas@versada.lt>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Sukūrė" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Sukurta" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importuoti" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Paskutinį kartą atnaujino" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Paskutinį kartą atnaujinta" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktīvs" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Uzņēmums" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Izveidoja" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Izveidots" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Pēdējo reizi atjaunoja" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Pēdējās izmaiņas" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nosaukums" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Uzdevums" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Активно" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Компанија" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Креирано од" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Креирано на" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Прикажи име" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Последна промена на" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Последно ажурирање од" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Последно ажурирање на" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Име" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Задача" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Идэвхитэй" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Компани" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Үүсгэгч" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Үүсгэсэн" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Дэлгэцийн Нэр" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Сүүлийн засвар хийсэн огноо" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Сүүлийн засвар хийсэн" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Сүүлийн засвар хийсэн огноо" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Нэр" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Даалгавар" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Firma" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Opprettet av" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Opprettet den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Visnings navn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Sist oppdatert " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Sist oppdatert av" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Sist oppdatert" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Navn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Firma" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Laget av" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Laget den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Vis navn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importer" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Sist endret den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Sist oppdatert av" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Sist oppdatert den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Actief" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Adres" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Bedrijf" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Aangemaakt door" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Aangemaakt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Te tonen naam" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Bestandsnaam" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Import" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Laatst bijgewerkt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Laatst bijgewerkt door" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Laatst bijgewerkt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Locatie" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Naam" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Wachtwoord" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Taak" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Actief" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Bedrijf" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Gemaakt door" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Gemaakt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Schermnaam" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Laatst Aangepast op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Laatst bijgewerkt door" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Laatst bijgewerkt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Naam:" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-12-01 02:01+0000\n" |
|||
"PO-Revision-Date: 2017-12-01 02:01+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Actief" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Adres" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Aangemaakt door" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Aangemaakt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Weergavenaam" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Laatst gewijzigd op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Laatst bijgewerkt door" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Laatst bijgewerkt op" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Locatie" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Naam" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktywny" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Firma" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Utworzone przez" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Utworzono" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Wyświetlana nazwa " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Ostatnio modyfikowano" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Ostatnio modyfikowane przez" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ostatnia zmiana" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nazwa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Zadanie" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,290 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2017 |
|||
# Daniel Reis <dreis.pt@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Daniel Reis <dreis.pt@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Ativo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Criado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Criado em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Modificado a última vez por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Atualizado pela última vez por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Atualizado pela última vez em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Localização" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarefa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-10-28 11:06+0000\n" |
|||
"PO-Revision-Date: 2017-10-28 11:06+0000\n" |
|||
"Last-Translator: Armando Vulcano Junior <vulcano@uol.com.br>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Ativo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Endereço" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Anexo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Organização" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Criado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Criado em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nome para Mostrar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Processo Email" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Exportar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Nome do arquivo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Identificação" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última atualização em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última atualização por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última atualização em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Location" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Senha" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Executar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarefa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "Tarefas" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,290 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2017 |
|||
# Daniel Reis <dreis.pt@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Daniel Reis <dreis.pt@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Ativo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Criado por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Criado em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nome a Apresentar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Tópico de Email" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Importar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última Modificação Em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Atualizado pela última vez por" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Atualizado pela última vez em" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Localização" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Tarefa" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Activ" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Companie" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creat de" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Creat la" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nume Afişat" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Ultima actualizare în" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Ultima actualizare făcută de" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Ultima actualizare la" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Nume" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Sarcina" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Активное" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Компания" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Создано" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Создан" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Последний раз обновлено" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Последний раз обновлено" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Название" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,290 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# gebri <gebri@inmail.sk>, 2017 |
|||
# ivbo <ivan@bock.sk>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: ivbo <ivan@bock.sk>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktívne" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Spoločnosť" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Vytvoril" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Vytvorené" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Zobraziť meno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Posledná modifikácia" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Naposledy upravoval" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Naposledy upravované" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Meno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,292 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2017 |
|||
# Dejan Sraka <dejan.sraka@picolabs.si>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Dejan Sraka <dejan.sraka@picolabs.si>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktivno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "Naslov" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Priponka" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Družba" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Ustvaril" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Ustvarjeno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Prikazni naziv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "E-poštna nit" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Izvoz" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "Tip datoteke" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Naziv datoteke" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "Uvozi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Zadnjič spremenjeno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Zadnji posodobil" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Zadnjič posodobljeno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Lokacija" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "Prijava" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Naziv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Geslo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "Vrata" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "Zagon" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Opravilo" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "Opravila" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_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" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Kreiran" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Ime" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktivno" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Kreirao" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Kreiran" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Ime za prikaz" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Zadnja izmjena" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Zadnja izmjena" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Zadnja izmjena" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Ime:" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Aktiv" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Företag" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Skapad av" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Skapad den" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Visa namn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Senast redigerad" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Senast uppdaterad av" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Senast uppdaterad" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Namn" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Uppgift" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "เปิดใช้งาน" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "บริษัท" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "สร้างโดย" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "สร้างเมื่อ" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "ชื่อที่ใช้แสดง" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "รหัส" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "อัพเดทครั้งสุดท้ายโดย" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "ชื่อ" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,291 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Etkin" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "Ek" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Şirket" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Oluşturan" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Oluşturuldu" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Görünen İsim" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "Eposta konuşması" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "Dışa aktar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "Dosya adı" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "İçe Aktar" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Son değişiklik" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Son güncelleyen" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Son güncelleme" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Adı" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "Parola" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "Port" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Görev" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
|||
"Dosya tipi dosya ERP sistemine saklanırken kullanılacak yöntemleri " |
|||
"belirlemeye yarar." |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 2017\n" |
|||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" |
|||
"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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Etkin" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "Firma" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Oluşturan" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Oluşturulma tarihi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Görünen ad" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "Kimlik" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "En son güncelleme tarihi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "En son güncelleyen " |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "En son güncelleme tarihi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "Konum" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Ad" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,289 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Kateryna Onyshchenko <Katrona17@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: Kateryna Onyshchenko <Katrona17@gmail.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Створив" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Дата створення" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Назва для відображення" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Остання модифікація" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Востаннє оновив" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Останнє оновлення" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Name" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "Завдання" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Hoạt động" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Được tạo bởi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Được tạo vào" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "Tên hiển thị" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Sửa lần cuối vào" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Last Updated by" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Cập nhật lần cuối vào" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Tên" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "Có hiệu lực" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "Tạo bởi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "Tạo vào" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Cập nhật lần cuối bởi" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Cập nhật lần cuối vào" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "Tên" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,290 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Jeffery CHEN <jeffery9@gmail.com>, 2017 |
|||
# ITGeeker <alanljj@qq.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: ITGeeker <alanljj@qq.com>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "有效" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "附件" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "公司" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "创建者" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "创建时间" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "显示名称" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "导出" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "文件名" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "最后修改时间" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "最后更新者" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "上次更新日期" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "名称" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "任务" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -0,0 +1,288 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * external_file_location |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-04-19 18:00+0000\n" |
|||
"PO-Revision-Date: 2017-04-19 18:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_after_import |
|||
msgid "Action after import a file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_active |
|||
msgid "Active" |
|||
msgstr "活躍" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_address |
|||
msgid "Address" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_after_import |
|||
msgid "After import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_attachment_ids |
|||
msgid "Attachment" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_company_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_company_id |
|||
msgid "Company" |
|||
msgstr "公司" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_md5_check |
|||
msgid "Control file integrity after import with a md5 file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_uid |
|||
msgid "Created by" |
|||
msgstr "建立者" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_create_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_create_date |
|||
msgid "Created on" |
|||
msgstr "建立於" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Data importation setting" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_display_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_display_name |
|||
msgid "Display Name" |
|||
msgstr "顯示名稱" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_ir_attachment_metadata |
|||
msgid "Email Thread" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Export" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_task |
|||
msgid "External file task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_tree |
|||
msgid "File Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.actions.act_window,name:external_file_location.action_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_ir_location |
|||
msgid "File Locations" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_file_type |
|||
msgid "File Type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.menu,name:external_file_location.menu_file_exchange |
|||
msgid "File exchange" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filename |
|||
msgid "" |
|||
"File name which is imported.You can use file pattern like *.txtto import all" |
|||
" txt files" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "FileStore Root Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filename |
|||
msgid "Filename" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_filepath |
|||
msgid "Filepath" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_login |
|||
msgid "Hide login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_password |
|||
msgid "Hide password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_hide_port |
|||
msgid "Hide port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_id |
|||
msgid "ID" |
|||
msgstr "編號" |
|||
|
|||
#. module: external_file_location |
|||
#: selection:external.file.task,method_type:0 |
|||
msgid "Import" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_move_path |
|||
msgid "Imported File will be moved to this path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_new_name |
|||
msgid "" |
|||
"Imported File will be renamed to this nameName can use mako template where " |
|||
"obj is an ir_attachement. template exemple : " |
|||
"${obj.name}-${obj.create_date}.csv" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location___last_update |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "最後修改:" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_uid |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "最後更新:" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_write_date |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "最後更新於" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model,name:external_file_location.model_external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_location_id |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_location_id |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
msgid "Location" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_login |
|||
msgid "Login" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_md5_check |
|||
msgid "Md5 check" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_method_type |
|||
msgid "Method type" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_move_path |
|||
msgid "Move Path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_name |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_name |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Name" |
|||
msgstr "名稱" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_task_new_name |
|||
msgid "New Name" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_password |
|||
msgid "Password" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_filepath |
|||
msgid "Path to imported/exported file" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_port |
|||
msgid "Port" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_protocol |
|||
msgid "Protocol" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
msgid "Run" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_location_filestore_rootpath |
|||
msgid "Server's root path" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_ir_attachment_metadata_task_id |
|||
msgid "Task" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,field_description:external_file_location.field_external_file_location_task_ids |
|||
msgid "Task ids" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_location_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_form |
|||
#: model:ir.ui.view,arch_db:external_file_location.view_task_tree |
|||
msgid "Tasks" |
|||
msgstr "" |
|||
|
|||
#. module: external_file_location |
|||
#: model:ir.model.fields,help:external_file_location.field_external_file_task_file_type |
|||
msgid "" |
|||
"The file type determines an import method to be used to parse and transform " |
|||
"data before their import in ERP" |
|||
msgstr "" |
@ -1,21 +1,33 @@ |
|||
# coding: utf-8 |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# @ 2016 Florian DA COSTA @ Akretion |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from openerp import models, fields |
|||
from openerp import models, fields, api |
|||
import base64 |
|||
import os |
|||
|
|||
|
|||
class IrAttachmentMetadata(models.Model): |
|||
_inherit = 'ir.attachment.metadata' |
|||
|
|||
sync_date = fields.Datetime() |
|||
state = fields.Selection([ |
|||
('pending', 'Pending'), |
|||
('failed', 'Failed'), |
|||
('done', 'Done'), |
|||
], readonly=False, required=True, default='pending') |
|||
state_message = fields.Text() |
|||
task_id = fields.Many2one('external.file.task', string='Task') |
|||
location_id = fields.Many2one( |
|||
'external.file.location', string='Location', |
|||
related='task_id.location_id', store=True) |
|||
file_type = fields.Selection( |
|||
selection_add=[ |
|||
('export_external_location', |
|||
'Export File (External location)') |
|||
]) |
|||
|
|||
@api.multi |
|||
def _run(self): |
|||
super(IrAttachmentMetadata, self)._run() |
|||
if self.file_type == 'export_external_location': |
|||
protocols = self.env['external.file.location']._get_classes() |
|||
location = self.location_id |
|||
cls = protocols.get(location.protocol)[1] |
|||
path = os.path.join(self.task_id.filepath, self.datas_fname) |
|||
with cls.connect(location) as conn: |
|||
datas = base64.decodestring(self.datas) |
|||
conn.setcontents(path, data=datas) |
@ -1,84 +0,0 @@ |
|||
# coding: utf-8 |
|||
# Author: Joel Grand-Guillaume |
|||
# Copyright 2011-2012 Camptocamp SA |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
|
|||
def itersubclasses(cls, _seen=None): |
|||
""" |
|||
itersubclasses(cls) |
|||
Generator over all subclasses of a given class, in depth first order. |
|||
>>> list(itersubclasses(int)) == [bool] |
|||
True |
|||
>>> class A(object): pass |
|||
>>> class B(A): pass |
|||
>>> class C(A): pass |
|||
>>> class D(B,C): pass |
|||
>>> class E(D): pass |
|||
>>> |
|||
>>> for cls in itersubclasses(A): |
|||
... print(cls.__name__) |
|||
B |
|||
D |
|||
E |
|||
C |
|||
>>> # get ALL (new-style) classes currently defined |
|||
>>> [cls.__name__ for cls in itersubclasses(object)] #doctest: +ELLIPSIS |
|||
['type', ...'tuple', ...] |
|||
""" |
|||
if not isinstance(cls, type): |
|||
raise TypeError('itersubclasses must be called with ' |
|||
'new-style classes, not %.100r' % cls |
|||
) |
|||
if _seen is None: |
|||
_seen = set() |
|||
try: |
|||
subs = cls.__subclasses__() |
|||
except TypeError: # fails only when cls is type |
|||
subs = cls.__subclasses__(cls) |
|||
for sub in subs: |
|||
if sub not in _seen: |
|||
_seen.add(sub) |
|||
yield sub |
|||
for sub in itersubclasses(sub, _seen): |
|||
yield sub |
|||
|
|||
|
|||
def _get_erp_module_name(module_path): |
|||
# see this PR for v9 https://github.com/odoo/odoo/pull/11084 |
|||
""" Extract the name of the Odoo module from the path of the |
|||
Python module. |
|||
|
|||
Taken from Odoo server: ``openerp.models.MetaModel`` |
|||
|
|||
The (Odoo) module name can be in the ``openerp.addons`` namespace |
|||
or not. For instance module ``sale`` can be imported as |
|||
``openerp.addons.sale`` (the good way) or ``sale`` (for backward |
|||
compatibility). |
|||
""" |
|||
module_parts = module_path.split('.') |
|||
if len(module_parts) > 2 and module_parts[:2] == ['openerp', 'addons']: |
|||
module_name = module_parts[2] |
|||
else: |
|||
module_name = module_parts[0] |
|||
return module_name |
|||
|
|||
|
|||
def is_module_installed(env, module_name): |
|||
""" Check if an Odoo addon is installed. |
|||
|
|||
:param module_name: name of the addon |
|||
""" |
|||
# the registry maintains a set of fully loaded modules so we can |
|||
# lookup for our module there |
|||
return module_name in env.registry._init_modules |
|||
|
|||
|
|||
def get_erp_module(cls_or_func): |
|||
""" For a top level function or class, returns the |
|||
name of the Odoo module where it lives. |
|||
|
|||
So we will be able to filter them according to the modules |
|||
installation state. |
|||
""" |
|||
return _get_erp_module_name(cls_or_func.__module__) |
@ -1,4 +1,3 @@ |
|||
from . import abstract_fs |
|||
from . import ftp |
|||
from . import sftp |
|||
from . import filestore |
@ -1,196 +0,0 @@ |
|||
# coding: utf-8 |
|||
# Copyright (C) 2014 initOS GmbH & Co. KG (<http://www.initos.com>). |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# ©2016 @author Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
import logging |
|||
import os |
|||
import fnmatch |
|||
import datetime |
|||
|
|||
from openerp import tools |
|||
|
|||
from .abstract_task import AbstractTask |
|||
|
|||
_logger = logging.getLogger(__name__) |
|||
|
|||
|
|||
try: |
|||
# We use a jinja2 sandboxed environment to render mako templates. |
|||
# Note that the rendering does not cover all the mako syntax, in particular |
|||
# arbitrary Python statements are not accepted, and not all expressions are |
|||
# allowed: only "public" attributes (not starting with '_') of objects may |
|||
# be accessed. |
|||
# This is done on purpose: it prevents incidental or malicious execution of |
|||
# Python code that may break the security of the server. |
|||
from jinja2.sandbox import SandboxedEnvironment |
|||
mako_template_env = SandboxedEnvironment( |
|||
variable_start_string="${", |
|||
variable_end_string="}", |
|||
line_statement_prefix="%", |
|||
trim_blocks=True, # do not output newline after blocks |
|||
) |
|||
mako_template_env.globals.update({ |
|||
'str': str, |
|||
'datetime': datetime, |
|||
'len': len, |
|||
'abs': abs, |
|||
'min': min, |
|||
'max': max, |
|||
'sum': sum, |
|||
'filter': filter, |
|||
'reduce': reduce, |
|||
'map': map, |
|||
'round': round, |
|||
}) |
|||
except ImportError: |
|||
_logger.warning("jinja2 not available, templating features will not work!") |
|||
|
|||
|
|||
class AbstractFSTask(AbstractTask): |
|||
|
|||
_name = None |
|||
_key = None |
|||
_synchronize_type = None |
|||
_default_port = None |
|||
|
|||
def __init__(self, env, config): |
|||
self.env = env |
|||
self.host = config.get('host', '') |
|||
self.user = config.get('user', '') |
|||
self.pwd = config.get('pwd', '') |
|||
self.port = config.get('port', '') |
|||
self.allow_dir_creation = config.get('allow_dir_creation', '') |
|||
self.file_name = config.get('file_name', '') |
|||
self.path = config.get('path') or '.' |
|||
self.move_path = config.get('move_path', '') |
|||
self.new_name = config.get('new_name', '') |
|||
self.after_import = config.get('after_import', False) |
|||
self.file_type = config.get('file_type', False) |
|||
self.attachment_ids = config.get('attachment_ids', False) |
|||
self.task = config.get('task', False) |
|||
self.ext_hash = False |
|||
self.md5_check = config.get('md5_check', False) |
|||
|
|||
def _handle_new_source(self, fs_conn, download_directory, file_name, |
|||
move_directory): |
|||
"""open and read given file into create_file method, |
|||
move file if move_directory is given""" |
|||
with fs_conn.open(self._source_name(download_directory, file_name), |
|||
"rb") as fileobj: |
|||
data = fileobj.read() |
|||
return self.create_file(file_name, data) |
|||
|
|||
def _source_name(self, download_directory, file_name): |
|||
"""helper to get the full name""" |
|||
return os.path.join(download_directory, file_name) |
|||
|
|||
def _move_file(self, fs_conn, source, target): |
|||
"""Moves a file on the server""" |
|||
_logger.info('Moving file %s %s' % (source, target)) |
|||
fs_conn.rename(source, target) |
|||
if self.md5_check: |
|||
fs_conn.rename(source + '.md5', target + '.md5') |
|||
|
|||
def _delete_file(self, fs_conn, source): |
|||
"""Deletes a file from the server""" |
|||
_logger.info('Deleting file %s' % source) |
|||
fs_conn.remove(source) |
|||
if self.md5_check: |
|||
fs_conn.remove(source + '.md5') |
|||
|
|||
def _get_hash(self, file_name, fs_conn): |
|||
hash_file_name = file_name + '.md5' |
|||
with fs_conn.open(hash_file_name, 'rb') as f: |
|||
return f.read().rstrip('\r\n') |
|||
|
|||
def _get_files(self, conn, path): |
|||
process_files = [] |
|||
files_list = conn.listdir(path) |
|||
pattern = self.file_name |
|||
for file_name in fnmatch.filter(files_list, pattern): |
|||
source_name = self._source_name(self.path, file_name) |
|||
process_files.append((file_name, source_name)) |
|||
return process_files |
|||
|
|||
def _template_render(self, template, record): |
|||
try: |
|||
template = mako_template_env.from_string(tools.ustr(template)) |
|||
except Exception: |
|||
_logger.exception("Failed to load template %r", template) |
|||
|
|||
variables = {'obj': record} |
|||
try: |
|||
render_result = template.render(variables) |
|||
except Exception: |
|||
_logger.exception( |
|||
"Failed to render template %r using values %r" % |
|||
(template, variables)) |
|||
render_result = u"" |
|||
if render_result == u"False": |
|||
render_result = u"" |
|||
return render_result |
|||
|
|||
def _process_file(self, conn, file_to_process): |
|||
if self.md5_check: |
|||
self.ext_hash = self._get_hash(file_to_process[1], conn) |
|||
att_id = self._handle_new_source( |
|||
conn, |
|||
self.path, |
|||
self.file_name, |
|||
self.move_path) |
|||
move = False |
|||
rename = False |
|||
if self.after_import: |
|||
move = 'move' in self.after_import |
|||
rename = 'rename' in self.after_import |
|||
|
|||
# Move/rename/delete files only after all |
|||
# files have been processed. |
|||
if self.after_import == 'delete': |
|||
self._delete_file(conn, file_to_process[1]) |
|||
elif rename or move: |
|||
new_name = file_to_process[0] |
|||
if rename and self.new_name: |
|||
new_name_render = self._template_render( |
|||
self.new_name, att_id) |
|||
if new_name_render: |
|||
# Avoid space in file name |
|||
new_name = new_name_render.replace(' ', '_') |
|||
if self.move_path and not conn.exists(self.move_path): |
|||
conn.makedir(self.move_path) |
|||
move_path = self.move_path if self.move_path else self.path |
|||
self._move_file( |
|||
conn, |
|||
file_to_process[1], |
|||
self._source_name(move_path, new_name)) |
|||
return att_id |
|||
|
|||
def _handle_existing_target(self, fs_conn, target_name, filedata): |
|||
raise Exception("%s already exists" % target_name) |
|||
|
|||
def _handle_new_target(self, fs_conn, target_name, filedata): |
|||
try: |
|||
with fs_conn.open(target_name, mode='wb') as fileobj: |
|||
fileobj.write(filedata) |
|||
_logger.info('wrote %s, size %d', target_name, len(filedata)) |
|||
self.attachment_id.state = 'done' |
|||
self.attachment_id.state_message = '' |
|||
except IOError: |
|||
self.attachment_id.state = 'failed' |
|||
self.attachment_id.state_message = ( |
|||
'The directory doesn\'t exist or had insufficient rights') |
|||
|
|||
def _target_name(self, fs_conn, upload_directory, filename): |
|||
return os.path.join(upload_directory, filename) |
|||
|
|||
def _upload_file(self, conn, host, port, user, pwd, |
|||
path, filename, filedata): |
|||
upload_directory = path or '.' |
|||
target_name = self._target_name(conn, |
|||
upload_directory, |
|||
filename) |
|||
if conn.isfile(target_name): |
|||
self._handle_existing_target(conn, target_name, filedata) |
|||
else: |
|||
self._handle_new_target(conn, target_name, filedata) |
@ -1,28 +0,0 @@ |
|||
# coding: utf-8 |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from base64 import b64encode |
|||
|
|||
|
|||
class AbstractTask(object): |
|||
|
|||
_name = None |
|||
_key = None |
|||
_synchronize_type = None |
|||
_default_port = None |
|||
_hide_login = False |
|||
_hide_password = False |
|||
_hide_port = False |
|||
|
|||
def create_file(self, filename, data): |
|||
ir_attachment_id = self.env['ir.attachment.metadata'].create({ |
|||
'name': filename, |
|||
'datas': b64encode(data), |
|||
'datas_fname': filename, |
|||
'task_id': self.task and self.task.id or False, |
|||
'location_id': self.task and self.task.location_id.id or False, |
|||
'external_hash': self.ext_hash, |
|||
'file_type': self.file_type, |
|||
}) |
|||
return ir_attachment_id |
@ -1,53 +1,27 @@ |
|||
# coding: utf-8 |
|||
# Copyright (C) 2014 initOS GmbH & Co. KG (<http://www.initos.com>). |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# @ 2016 Florian DA COSTA @ Akretion |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from .abstract_fs import AbstractFSTask |
|||
from base64 import b64decode |
|||
from fs import osfs |
|||
import logging |
|||
_logger = logging.getLogger(__name__) |
|||
|
|||
try: |
|||
from fs import osfs |
|||
except ImportError: |
|||
_logger.debug('Cannot `import fs`.') |
|||
|
|||
class FileStoreTask(AbstractFSTask): |
|||
|
|||
class FileStoreTask(osfs.OSFS): |
|||
|
|||
_key = 'filestore' |
|||
_name = 'File Store' |
|||
_synchronize_type = None |
|||
_default_port = None |
|||
_hide_login = True |
|||
_hide_password = True |
|||
_hide_port = True |
|||
|
|||
|
|||
class FileStoreImportTask(FileStoreTask): |
|||
|
|||
_synchronize_type = 'import' |
|||
|
|||
def run(self): |
|||
att_ids = [] |
|||
with osfs.OSFS(self.host) as fs_conn: |
|||
files_to_process = self._get_files(fs_conn, self.path) |
|||
for file_to_process in files_to_process: |
|||
att_ids.append(self._process_file(fs_conn, file_to_process)) |
|||
return att_ids |
|||
|
|||
|
|||
class FileStoreExportTask(FileStoreTask): |
|||
|
|||
_synchronize_type = 'export' |
|||
|
|||
def run(self, async=True): |
|||
for attachment in self.attachment_ids: |
|||
if attachment.state in ('pending', 'failed'): |
|||
self.attachment_id = attachment |
|||
with osfs.OSFS(self.host) as fs_conn: |
|||
self._upload_file(fs_conn, |
|||
self.host, |
|||
self.port, |
|||
self.user, |
|||
self.pwd, |
|||
self.path, |
|||
attachment.datas_fname, |
|||
b64decode(attachment.datas)) |
|||
@staticmethod |
|||
def connect(location): |
|||
rootpath = location.filestore_rootpath or '/' |
|||
conn = FileStoreTask(rootpath) |
|||
return conn |
@ -1,51 +1,30 @@ |
|||
# coding: utf-8 |
|||
# Copyright (C) 2014 initOS GmbH & Co. KG (<http://www.initos.com>). |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# @ 2016 Florian DA COSTA @ Akretion |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from .abstract_fs import AbstractFSTask |
|||
from base64 import b64decode |
|||
from fs import ftpfs |
|||
import logging |
|||
_logger = logging.getLogger(__name__) |
|||
|
|||
try: |
|||
from fs import ftpfs |
|||
except ImportError: |
|||
_logger.debug('Cannot `import fs`.') |
|||
|
|||
class FtpTask(AbstractFSTask): |
|||
|
|||
_key = 'ftp' |
|||
_name = 'FTP' |
|||
class FtpTask(ftpfs.FTPFS): |
|||
|
|||
_key = 'sftp' |
|||
_name = 'SFTP' |
|||
_synchronize_type = None |
|||
_default_port = 21 |
|||
_default_port = 22 |
|||
_hide_login = False |
|||
_hide_password = False |
|||
_hide_port = False |
|||
|
|||
|
|||
class FtpImportTask(FtpTask): |
|||
|
|||
_synchronize_type = 'import' |
|||
|
|||
def run(self): |
|||
att_ids = [] |
|||
with ftpfs.FTPFS( |
|||
self.host, self.user, self.pwd, port=self.port) as ftp_conn: |
|||
files_to_process = self._get_files(ftp_conn, self.path) |
|||
for file_to_process in files_to_process: |
|||
att_ids.append(self._process_file(ftp_conn, file_to_process)) |
|||
return att_ids |
|||
|
|||
|
|||
class FtpExportTask(FtpTask): |
|||
|
|||
_synchronize_type = 'export' |
|||
|
|||
def run(self, async=True): |
|||
for attachment in self.attachment_ids: |
|||
if attachment.state in ('pending', 'failed'): |
|||
self.attachment_id = attachment |
|||
with ftpfs.FTPFS(self.host, self.user, self.pwd, |
|||
port=self.port) as ftp_conn: |
|||
self._upload_file(ftp_conn, self.host, self.port, |
|||
self.user, self.pwd, self.path, |
|||
attachment.datas_fname, |
|||
b64decode(attachment.datas)) |
|||
@staticmethod |
|||
def connect(location): |
|||
conn = FtpTask(location.address, |
|||
location.login, |
|||
location.password, |
|||
location.port) |
|||
return conn |
@ -1,2 +1,4 @@ |
|||
from . import mock_server |
|||
from . import test_ftp |
|||
from . import test_sftp |
|||
from . import test_filestore |
@ -0,0 +1,32 @@ |
|||
# coding: utf-8 |
|||
# @ 2016 Florian da Costa @ Akretion |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
import openerp.tests.common as common |
|||
from openerp import api |
|||
from StringIO import StringIO |
|||
|
|||
|
|||
class ContextualStringIO(StringIO): |
|||
""" |
|||
snippet from http://bit.ly/1HfH6uW (stackoverflow) |
|||
""" |
|||
|
|||
def __enter__(self): |
|||
return self |
|||
|
|||
def __exit__(self, *args): |
|||
self.close() |
|||
return False |
|||
|
|||
|
|||
class TestConnection(common.TransactionCase): |
|||
|
|||
def setUp(self): |
|||
super(TestConnection, self).setUp() |
|||
self.registry.enter_test_mode() |
|||
self.env = api.Environment(self.registry.test_cr, self.env.uid, |
|||
self.env.context) |
|||
|
|||
def tearDown(self): |
|||
self.registry.leave_test_mode() |
|||
super(TestConnection, self).tearDown() |
@ -0,0 +1,50 @@ |
|||
# coding: utf-8 |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# ©2016 @author Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
import logging |
|||
from base64 import b64decode |
|||
from .common import TestConnection, ContextualStringIO |
|||
from .mock_server import server_mock_filestore |
|||
|
|||
|
|||
_logger = logging.getLogger(__name__) |
|||
|
|||
|
|||
class TestfilestoreConnection(TestConnection): |
|||
|
|||
def setUp(self): |
|||
super(TestfilestoreConnection, self).setUp() |
|||
self.test_file_filestore = ContextualStringIO() |
|||
self.test_file_filestore.write('import filestore') |
|||
self.test_file_filestore.seek(0) |
|||
|
|||
def test_00_filestore_import(self): |
|||
self.task = self.env.ref( |
|||
'external_file_location.filestore_import_task') |
|||
with server_mock_filestore( |
|||
{'open': self.test_file_filestore, |
|||
'listdir': ['test-import-filestore.txt']}): |
|||
self.task.run_import() |
|||
search_file = self.env['ir.attachment.metadata'].search( |
|||
[('name', '=', 'test-import-filestore.txt')]) |
|||
self.assertEqual(len(search_file), 1) |
|||
self.assertEqual(b64decode(search_file[0].datas), 'import filestore') |
|||
|
|||
def test_01_filestore_export(self): |
|||
self.task = self.env.ref( |
|||
'external_file_location.filestore_export_task') |
|||
self.filestore_attachment = self.env.ref( |
|||
'external_file_location.ir_attachment_export_file_filestore') |
|||
with server_mock_filestore( |
|||
{'setcontents': ''}) as Fakefilestore: |
|||
self.task.run_export() |
|||
if Fakefilestore: |
|||
self.assertEqual('setcontents', Fakefilestore[-1]['method']) |
|||
self.assertEqual('done', self.filestore_attachment.state) |
|||
self.assertEqual( |
|||
'/home/user/test/filestore_test_export.txt', |
|||
Fakefilestore[-1]['args'][0]) |
|||
self.assertEqual( |
|||
'test filestore file export', |
|||
Fakefilestore[-1]['kwargs']['data']) |
@ -0,0 +1,86 @@ |
|||
# coding: utf-8 |
|||
# @ 2015 Valentin CHEMIERE @ Akretion |
|||
# ©2016 @author Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
import logging |
|||
from base64 import b64decode |
|||
import hashlib |
|||
from .common import TestConnection, ContextualStringIO |
|||
from .mock_server import server_mock_ftp |
|||
from .mock_server import MultiResponse |
|||
from openerp.exceptions import UserError |
|||
|
|||
|
|||
_logger = logging.getLogger(__name__) |
|||
|
|||
|
|||
class TestFtpConnection(TestConnection): |
|||
|
|||
def setUp(self): |
|||
super(TestFtpConnection, self).setUp() |
|||
self.test_file_ftp = ContextualStringIO() |
|||
self.test_file_ftp.write('import ftp') |
|||
self.test_file_ftp.seek(0) |
|||
|
|||
def test_00_ftp_import(self): |
|||
self.task = self.env.ref('external_file_location.ftp_import_task') |
|||
with server_mock_ftp( |
|||
{'open': self.test_file_ftp, |
|||
'listdir': ['test-import-ftp.txt']}): |
|||
self.task.run_import() |
|||
search_file = self.env['ir.attachment.metadata'].search( |
|||
[('name', '=', 'test-import-ftp.txt')]) |
|||
self.assertEqual(len(search_file), 1) |
|||
self.assertEqual(b64decode(search_file[0].datas), 'import ftp') |
|||
|
|||
def test_01_ftp_export(self): |
|||
self.task = self.env.ref('external_file_location.ftp_export_task') |
|||
self.ftp_attachment = self.env.ref( |
|||
'external_file_location.ir_attachment_export_file_ftp') |
|||
with server_mock_ftp( |
|||
{'setcontents': ''}) as FakeFTP: |
|||
self.task.run_export() |
|||
if FakeFTP: |
|||
self.assertEqual('setcontents', FakeFTP[-1]['method']) |
|||
self.assertEqual('done', self.ftp_attachment.state) |
|||
self.assertEqual( |
|||
'/home/user/test/ftp_test_export.txt', |
|||
FakeFTP[-1]['args'][0]) |
|||
self.assertEqual( |
|||
'test ftp file export', |
|||
FakeFTP[-1]['kwargs']['data']) |
|||
|
|||
def test_02_ftp_import_md5(self): |
|||
md5_file = ContextualStringIO() |
|||
md5_file.write(hashlib.md5('import ftp').hexdigest()) |
|||
md5_file.seek(0) |
|||
task = self.env.ref('external_file_location.ftp_import_task') |
|||
task.md5_check = True |
|||
with server_mock_ftp( |
|||
{'open': MultiResponse({ |
|||
1: md5_file, |
|||
0: self.test_file_ftp}), |
|||
'listdir': [task.filename]}) as Fakeftp: |
|||
task.run_import() |
|||
search_file = self.env['ir.attachment.metadata'].search( |
|||
(('name', '=', task.filename),)) |
|||
self.assertEqual(len(search_file), 1) |
|||
self.assertEqual(b64decode(search_file[0].datas), |
|||
'import ftp') |
|||
self.assertEqual('open', Fakeftp[-1]['method']) |
|||
self.assertEqual(hashlib.md5('import ftp').hexdigest(), |
|||
search_file.external_hash) |
|||
|
|||
def test_03_ftp_import_md5_corrupt_file(self): |
|||
md5_file = ContextualStringIO() |
|||
md5_file.write(hashlib.md5('import test ftp corrupted').hexdigest()) |
|||
md5_file.seek(0) |
|||
task = self.env.ref('external_file_location.ftp_import_task') |
|||
task.md5_check = True |
|||
with server_mock_ftp( |
|||
{'open': MultiResponse({ |
|||
1: md5_file, |
|||
0: self.test_file_ftp}), |
|||
'listdir': [task.filename]}): |
|||
with self.assertRaises(UserError): |
|||
task.run_import() |
Write
Preview
Loading…
Cancel
Save
Reference in new issue