# Translation of Odoo Server. # This file contains the translation of the following modules: # * excel_import_export # msgid "" msgstr "" "Project-Id-Version: Odoo Server 16.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "${object.post_import_do_something()}" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/common.py:0 #: code:addons/excel_import_export/models/common.py:0 #, python-format msgid "'%s' sheet not found" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_export_xlsx_wizard__state #: model:ir.model.fields,help:excel_import_export.field_import_xlsx_wizard__state #: model:ir.model.fields,help:excel_import_export.field_xlsx_report__state msgid "" "* Choose: wizard show in user selection mode\n" "* Get: wizard show results from user action" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Cell: Location of data in excel sheet (e.g., A1, B1, ...)" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Continue: If not selected, start rolling with specified first row " "cells. If selected, continue from previous one2many field" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Extend: If selected, extend one row after one data row in order to " "preserve the sum line" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Field Cond.: Python code in ${...} to " "manipulate field value, e.g., if field = product_id, value will" " represent product object, e.g., ${value and " "value.uom_id.name or \"\"}" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Field Cond.: Python code in ${...} value " "will represent data from excel cell, e.g., if A1 = 'ABC', value" " will represent 'ABC', e.g., ${value == \"ABC\" and \"X\"" " or \"Y\"} thus can change from cell value to other value for import." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Field: Field of the record to be imported to, e.g., product_id" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Field: Field of the record, e.g., product_id.uom_id.name. They are " "orm compliant." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "No Delete: By default, all one2many lines will be deleted before " "import. Select this, to avoid deletion" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Note:" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Row Field: Use _HEAD_ for the record itself, and one2many field " "(e.g., line_ids) for row data" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Row Field: Use _HEAD_ for the record itself, and one2many field for " "row data, e.g., order_line, line_ids[max_row] where " "[max_row] is optional number of rows to import" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Sheet: Name (e.g., Sheet 1) or index (e.g., 1) of excel sheet" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Sheet: Name (e.g., Sheet 1) or index (e.g., 1) of excel sheet to " "export data to" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Style w/Cond.: Conditional style by python code in " "#?...?, e.g., apply style for specific product, " "#?value.name == \"ABC\" and #{font=bold;fill=red} or None?" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Style: Default style in #{...} that apply to each cell, " "e.g., #{align=left;style=text}. See module's style.py " "for available styles." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Sum: Add sum value on last row, @{sum}" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "\n" "{\n" " '__EXPORT__': {\n" " 'sale_order': { # sheet can be name (string) or index (integer)\n" " '_HEAD_': {\n" " 'B2': 'partner_id.display_name${value or \"\"}#{align=left;style=text}',\n" " 'B3': 'name${value or \"\"}#{align=left;style=text}',\n" " },\n" " 'line_ids': { # prefix with _CONT_ to continue rows from previous row field\n" " 'A6': 'product_id.display_name${value or \"\"}#{style=text}',\n" " 'C6': 'product_uom_qty${value or 0}#{style=number}',\n" " 'E6': 'price_unit${value or 0}#{style=number}',\n" " 'G6': 'price_subtotal${value or 0}#{style=number}',\n" " },\n" " },\n" " },\n" " '__IMPORT__': {\n" " 'sale_order': { # sheet can be name (string) or index (integer)\n" " 'order_line': { # prefix with _NODEL_ to not delete rows before import\n" " 'A6': 'product_id',\n" " 'C6': 'product_uom_qty',\n" " 'E6': 'price_unit${value > 0 and value or 0}',\n" " },\n" " },\n" " },\n" " '__POST_IMPORT__': '${object.post_import_do_something()}',\n" "}\n" "\n" " " msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "date, datetime, time: some useful python classes" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "model: active model, e.g., self.env['my.model']" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "object: record object or line object depends on Row " "Field" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "value: value from Cell" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "value: value from Field" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add Export Action" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add Import Action" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add Report Menu" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add data column" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add header section" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add new report menu at root level" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add row section" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Add sheet section" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_report__choose_template msgid "Allow Choose Template" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_styles msgid "Available styles for excel" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template_import__no_delete msgid "" "By default, all rows will be deleted before import.\n" "Select No Delete, otherwise" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__csv_delimiter msgid "CSV Delimiter" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__csv_extension msgid "CSV File Extension" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__csv_quote msgid "CSV Quoting" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__post_import_hook msgid "" "Call a function after successful import, i.e.,\n" "${object.post_import_do_something()}" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.report_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Cancel" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__excel_cell #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__excel_cell msgid "Cell" msgstr "" #. module: excel_import_export #: model:ir.model.fields.selection,name:excel_import_export.selection__export_xlsx_wizard__state__choose #: model:ir.model.fields.selection,name:excel_import_export.selection__import_xlsx_wizard__state__choose #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_report__state__choose msgid "Choose" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Choose Template:" msgstr "" #. module: excel_import_export #: model_terms:ir.actions.act_window,help:excel_import_export.action_xlsx_template msgid "Click to create a XLSX Template Object." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Close" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard msgid "Complete Prepare File (.xlsx)" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Complete Prepare Report (.xlsx)" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__is_cont msgid "Continue" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template_export__is_cont msgid "Continue data rows after last data row" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__to_csv msgid "Convert file into CSV format on export" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__to_csv msgid "Convert to CSV?" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__create_uid #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__create_uid #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__create_uid #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__create_uid #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__create_uid #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__create_uid msgid "Created by" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__create_date #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__create_date #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__create_date #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__create_date #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__create_date #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__create_date msgid "Created on" msgstr "" #. module: excel_import_export #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_export__section_type__data #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_import__section_type__data msgid "Data" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__style msgid "Default Style" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__description msgid "Description" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_template_export msgid "Detailed of how excel data will be exported" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_template_import msgid "Detailed of how excel data will be imported" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__display_name #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__display_name #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__display_name #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__display_name #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__display_name #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__display_name msgid "Display Name" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "Document must be in %s states" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "Document must be in draft state" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__use_report_wizard msgid "Easy Reporting" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "" "Error deleting data\n" "%s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #, python-format msgid "" "Error filling data into Excel sheets\n" "%s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "Error importing data" msgstr "" #. module: excel_import_export #: model:ir.model.fields.selection,name:excel_import_export.selection__ir_actions_report__report_type__excel msgid "Excel" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_export msgid "Excel Export AbstractModel" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_import msgid "Excel Import AbstractModel" msgstr "" #. module: excel_import_export #: model:ir.ui.menu,name:excel_import_export.menu_excel_import_export msgid "Excel Import/Export" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Excel Report" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_report msgid "Excel Report AbstractModel" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_xlsx_template msgid "Excel template file and instruction" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.report_xlsx_wizard msgid "Execute" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Execute Report" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__export_ids #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Export" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__export_action_id msgid "Export Action" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Export Instruction is how to write data from an active data record to specified cells in excel sheet.\n" " For example, an active record can be a sale order that user want to export.\n" " The record itself will be mapped to the header part of excel sheet. The record can contain multiple one2many fields, which will be written as data lines.\n" " You can look at following instruction as Excel Sheet(s), each with 1 header section (_HEAD_) and multiple row sections (one2many fields)." msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__is_extend msgid "Extend" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template_export__is_extend msgid "Extend a blank row after filling each record, to extend the footer" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__field_name #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__field_name msgid "Field" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__field_cond #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__field_cond msgid "Field Cond." msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__data #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_report__data msgid "File" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "File \"%(fname)s\" not found in template, %(name)s." msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__datas msgid "File Content" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__name #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_report__name #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__fname msgid "File Name" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Following are more explaination on each column:" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Following show very simple example of the dictionary construct.\n" " Normally, this will be within templates.xml file within addons." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "For code block ${...} and #?...?, " "following object are available," msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "For code block ${...}, following object are " "available," msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_report_xlsx_wizard msgid "Generic Report Wizard, used with template reporting option" msgstr "" #. module: excel_import_export #: model:ir.model.fields.selection,name:excel_import_export.selection__export_xlsx_wizard__state__get #: model:ir.model.fields.selection,name:excel_import_export.selection__import_xlsx_wizard__state__get #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_report__state__get msgid "Get" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard msgid "Get Import Template" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__gname msgid "Group Name" msgstr "" #. module: excel_import_export #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_export__section_type__head #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_import__section_type__head msgid "Head" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Help with Export Instruction" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Help with Import Instruction" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard msgid "Here is the exported file:" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "Here is the report file:" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__id #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__id #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__id #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__id #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__id #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__id msgid "ID" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template_export__row_field #: model:ir.model.fields,help:excel_import_export.field_xlsx_template_import__row_field msgid "If section type is row, this field is required" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #, python-format msgid "" "IllegalCharacterError\n" "Some exporting data contain special character\n" "%s" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__import_ids #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Import" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__import_action_id msgid "Import Action" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "Import Excel" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__import_file msgid "Import File (*.xlsx)" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard msgid "Import File Template" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__attachment_ids msgid "Import File(s) (*.xlsx)" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "Import Instruction is how to get data from excel sheet and write them to an active record.\n" " For example, user create a sales order document, and want to import order lines from excel.\n" " In reverse direction to exporting, data from excel's cells will be mapped to record fields during import.\n" " Cells can be mapped to record in header section (_HEAD_) and data table can be mapped to row section (one2many field, begins from specifed cells." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard msgid "Import Successful!" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "In header section part, map data fields (e.g., number, partner_id.name) into" " cells (e.g., B1, B2)." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "In header section, map cells (e.g., B1, B2) into data fields (e.g., number, " "partner_id)." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "In row section, data list will be rolled out from one2many row field (e.g., " "order_line), and map data field (i.e., product_id.name, uom_id.name, qty) " "into the first row cells to start rolling (e.g., A6, B6, C6)." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "" "In row section, data table from excel can be imported to one2many row field " "(e.g., order_line) by mapping cells on first row onwards (e.g., A6, B6, C6) " "to fields (e.g., product_id, uom_id, qty)" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Input Instruction (Dict.)" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__instruction msgid "Instruction" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__input_instruction msgid "Instruction (Input)" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__instruction msgid "Instruction on how to import/export, prepared by system." msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "Invalid declaration, %s has no valid field type" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "Invalid file style, only .xls or .xlsx file allowed" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/common.py:0 #, python-format msgid "Invalid style type %s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/common.py:0 #, python-format msgid "Invalid value %(value)s for style type %(key)s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #, python-format msgid "" "Key Error\n" "%s" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard____last_update #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard____last_update #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard____last_update #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template____last_update #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export____last_update #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import____last_update msgid "Last Modified on" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__write_uid #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__write_uid #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__write_uid #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__write_uid #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__write_uid #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__write_uid msgid "Last Updated by" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__write_date #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__write_date #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__write_date #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__write_date #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__write_date #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__write_date msgid "Last Updated on" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__gname msgid "" "Multiple template of same model, can belong to same group,\n" "result in multiple template selection" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__no_delete msgid "No Delete" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "No data_dict['__IMPORT__'] in template %s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_template.py:0 #, python-format msgid "No file content!" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_report.py:0 #: code:addons/excel_import_export/wizard/export_xlsx_wizard.py:0 #, python-format msgid "No file in %s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_report.py:0 #: code:addons/excel_import_export/wizard/export_xlsx_wizard.py:0 #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "No template found" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #, python-format msgid "Not enough worksheets" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/ir_report.py:0 #, python-format msgid "Only one id is allowed for excel_import_export" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__redirect_action msgid "Optional action, redirection after finish import operation" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__csv_extension msgid "Optional for CSV, default is .csv" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__csv_delimiter msgid "Optional for CSV, default is comma." msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__csv_quote msgid "Optional for CSV, default is full quoting." msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "Please select Excel file to import" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/common.py:0 #: code:addons/excel_import_export/models/common.py:0 #, python-format msgid "Position %s is not valid" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__post_import_hook msgid "Post Import Function Hook" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Post Import Hook" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "" "Post import operation error\n" "%s" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #, python-format msgid "Records in %s exceed max records allowed" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Remove Export Action" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Remove Import Action" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Remove Report Menu" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_ir_actions_report #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__report_action_id msgid "Report Action" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__report_menu_id msgid "Report Menu" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__result_model_id msgid "Report Model" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_ir_actions_report__report_type msgid "Report Type" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__res_model msgid "Res Model" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__res_id msgid "Resource ID" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__res_ids msgid "Resource IDs" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__res_model #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__res_model #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__res_model msgid "Resource Model" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__result_field msgid "Result Field" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__redirect_action msgid "Return Action" msgstr "" #. module: excel_import_export #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_export__section_type__row #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_import__section_type__row msgid "Row" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__row_field #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__row_field msgid "Row Field" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__datas msgid "Sample" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "Sample Input Instruction as Dictionary" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__domain msgid "Search Criterias" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__section_type #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__section_type msgid "Section Type" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__sequence #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__sequence msgid "Sequence" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "Set Templates" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__sheet #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__sheet #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_export__section_type__sheet #: model:ir.model.fields.selection,name:excel_import_export.selection__xlsx_template_import__section_type__sheet msgid "Sheet" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "Sheet %s not found" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__show_instruction msgid "Show Output" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_ir_actions_report__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_report_xlsx_wizard__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_export__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_import__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_report__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_styles__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__smart_search #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__smart_search msgid "Smart Search" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__state #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__state #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_report__state msgid "State" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__style_cond msgid "Style w/Cond." msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__is_sum msgid "Sum" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_export_xlsx_wizard__template_id #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__template_id #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_report__template_id msgid "Template" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/ir_report.py:0 #, python-format msgid "Template %(report_name)s on model %(model)s is not unique!" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_import_xlsx_wizard__fname #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template__name msgid "Template Name" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/common.py:0 #, python-format msgid "" "Template with CSV Quoting = False, data must not contain the same char as " "delimiter -> \"%s\"" msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_export.py:0 #: code:addons/excel_import_export/models/xlsx_import.py:0 #, python-format msgid "Template's model mismatch" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__res_model msgid "The database object this attachment will be attached to." msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/models/xlsx_template.py:0 #, python-format msgid "The selected redirect action is not for model %s" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_ir_actions_report__report_type msgid "" "The type of the report that will be rendered, each one having its own " "rendering method. HTML means the report will be opened directly in your " "browser PDF means the report will be rendered using Wkhtmltopdf and " "downloaded by the user." msgstr "" #. module: excel_import_export #. odoo-python #: code:addons/excel_import_export/wizard/import_xlsx_wizard.py:0 #, python-format msgid "This import action is not usable in this document context" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__show_instruction msgid "" "This is the computed instruction based on tab Import/Export,\n" "to be used by xlsx import/export engine" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__input_instruction msgid "This is used to construct instruction in tab Import/Export" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__use_report_wizard msgid "Use common report wizard model, instead of create specific model" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_xlsx_template__result_model_id msgid "When use commone wizard, choose the result model" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_export_xlsx_wizard msgid "Wizard for exporting excel" msgstr "" #. module: excel_import_export #: model:ir.model,name:excel_import_export.model_import_xlsx_wizard msgid "Wizard for importing excel" msgstr "" #. module: excel_import_export #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_export__template_id #: model:ir.model.fields,field_description:excel_import_export.field_xlsx_template_import__template_id #: model_terms:ir.ui.view,arch_db:excel_import_export.view_xlsx_template_form msgid "XLSX Template" msgstr "" #. module: excel_import_export #: model:ir.actions.act_window,name:excel_import_export.action_xlsx_template #: model:ir.ui.menu,name:excel_import_export.menu_xlsx_template msgid "XLSX Templates" msgstr "" #. module: excel_import_export #: model:ir.model.fields,help:excel_import_export.field_import_xlsx_wizard__attachment_ids msgid "You can select multiple files to import." msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.export_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard #: model_terms:ir.ui.view,arch_db:excel_import_export.xlsx_report_view msgid "or" msgstr "" #. module: excel_import_export #: model_terms:ir.ui.view,arch_db:excel_import_export.import_xlsx_wizard msgid "⇒ Get Sample Import Template" msgstr ""